ThinkAdmin/route/demo.php
2018-05-05 16:23:44 +08:00

60 lines
2.5 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | ThinkAdmin
// +----------------------------------------------------------------------
// | 版权所有 2014~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/ThinkAdmin
// +----------------------------------------------------------------------
use think\facade\Route;
// 不执行下面的路由
return [];
/* 测试环境禁止操作路由绑定 */
Route::post('admin/user/pass', function () {
return json(['code' => 0, 'msg' => '测试环境禁修改用户密码!']);
});
Route::post('admin/index/pass', function () {
return json(['code' => 0, 'msg' => '测试环境禁修改用户密码!']);
});
Route::post('admin/config/index', function () {
return json(['code' => 0, 'msg' => '测试环境禁修改系统配置操作!']);
});
Route::post('admin/config/file', function () {
return json(['code' => 0, 'msg' => '测试环境禁修改文件配置操作!']);
});
Route::post('admin/menu/index', function () {
return json(['code' => 0, 'msg' => '测试环境禁排序菜单操作!']);
});
Route::post('admin/menu/add', function () {
return json(['code' => 0, 'msg' => '测试环境禁添加菜单操作!']);
});
Route::post('admin/menu/edit', function () {
return json(['code' => 0, 'msg' => '测试环境禁编辑菜单操作!']);
});
Route::post('admin/menu/forbid', function () {
return json(['code' => 0, 'msg' => '测试环境禁止禁用菜单操作!']);
});
Route::post('admin/menu/del', function () {
return json(['code' => 0, 'msg' => '测试环境禁止删除菜单操作!']);
});
Route::post('wechat/config/index', function () {
return json(['code' => 0, 'msg' => '测试环境禁止修改微信配置操作!']);
});
Route::post('admin/node/save', function () {
return json(['code' => 0, 'msg' => '测试环境禁止修改节点数据操作!']);
});
Route::post('wechat/menu/edit', function () {
return json(['code' => 0, 'msg' => '测试环境禁止修改微信菜单操作!']);
});
Route::get('wechat/menu/cancel', function () {
return json(['code' => 0, 'msg' => '测试环境禁止删除微信菜单操作!']);
});