免密登录代码提交

This commit is contained in:
wong
2025-10-29 11:48:02 +08:00
parent 1862b11c0d
commit da8bcb04c9
5 changed files with 123 additions and 9 deletions

View File

@@ -45,4 +45,6 @@ Route::group('v1/store', function () {
Route::get('detail', 'app\store\controller\VendorController@detail'); // 获取供应商详情
Route::post('order', 'app\store\controller\VendorController@createOrder'); // 创建订单
});
})->middleware(['jwt']);
})->middleware(['jwt']);
Route::get('v1/store/login', 'app\store\controller\LoginController@index');