代码提交同步

This commit is contained in:
wong
2025-09-13 10:45:32 +08:00
parent a2a0cb8461
commit cc432ba18f
10 changed files with 8043 additions and 131 deletions

View File

@@ -0,0 +1,28 @@
<?php
// +----------------------------------------------------------------------
// | 设备管理模块路由配置
// +----------------------------------------------------------------------
use think\facade\Route;
// 定义RESTful风格的API路由
Route::group('v1/', function () {
Route::group('kefu/', function () {
});
})->middleware(['jwt']);
// 客服登录
Route::group('v1/kefu', function () {
Route::post('login', 'app\chukebao\controller\LoginController@index'); // 获取好友列表
});
return [];