You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.7 KiB
42 lines
1.7 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Niucloud-admin 企业快速开发的多应用管理平台
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网址:https://www.niucloud.com
|
|
// +----------------------------------------------------------------------
|
|
// | niucloud团队 版权所有 开源版本可自由商用
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Niucloud Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
use think\facade\Route;
|
|
|
|
use app\adminapi\middleware\AdminCheckRole;
|
|
use app\adminapi\middleware\AdminCheckToken;
|
|
use app\adminapi\middleware\AdminLog;
|
|
|
|
// USER_CODE_BEGIN -- market_performance
|
|
|
|
Route::group('market_performance', function () {
|
|
|
|
//市场绩效列表
|
|
Route::get('market_performance', 'market_performance.MarketPerformance/lists');
|
|
//市场绩效详情
|
|
Route::get('market_performance/:id', 'market_performance.MarketPerformance/info');
|
|
//添加市场绩效
|
|
Route::post('market_performance', 'market_performance.MarketPerformance/add');
|
|
//编辑市场绩效
|
|
Route::put('market_performance/:id', 'market_performance.MarketPerformance/edit');
|
|
//删除市场绩效
|
|
Route::delete('market_performance/:id', 'market_performance.MarketPerformance/del');
|
|
|
|
Route::get('personnel_all','market_performance.MarketPerformance/getPersonnelAll');
|
|
|
|
Route::get('campus_all','market_performance.MarketPerformance/getCampusAll');
|
|
|
|
})->middleware([
|
|
AdminCheckToken::class,
|
|
AdminCheckRole::class,
|
|
AdminLog::class
|
|
]);
|
|
// USER_CODE_END -- market_performance
|
|
|