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.
39 lines
1.6 KiB
39 lines
1.6 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 -- zhjw_students_survey
|
|
|
|
Route::group('zhjw_students_survey', function () {
|
|
|
|
//学员体测列表
|
|
Route::get('zhjw_students_survey', 'zhjw_students_survey.ZhjwStudentsSurvey/lists');
|
|
//学员体测详情
|
|
Route::get('zhjw_students_survey/:id', 'zhjw_students_survey.ZhjwStudentsSurvey/info');
|
|
//添加学员体测
|
|
Route::post('zhjw_students_survey', 'zhjw_students_survey.ZhjwStudentsSurvey/add');
|
|
//编辑学员体测
|
|
Route::put('zhjw_students_survey/:id', 'zhjw_students_survey.ZhjwStudentsSurvey/edit');
|
|
//删除学员体测
|
|
Route::delete('zhjw_students_survey/:id', 'zhjw_students_survey.ZhjwStudentsSurvey/del');
|
|
|
|
Route::get('students_all','zhjw_students_survey.ZhjwStudentsSurvey/getStudentsAll');
|
|
|
|
})->middleware([
|
|
AdminCheckToken::class,
|
|
AdminCheckRole::class,
|
|
AdminLog::class
|
|
]);
|
|
// USER_CODE_END -- zhjw_students_survey
|
|
|