1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /*
- |--------------------------------------------------------------------------
- | Web Routes
- |--------------------------------------------------------------------------
- |
- | Here is where you can register web routes for your application. These
- | routes are loaded by the RouteServiceProvider within a group which
- | contains the "web" middleware group. Now create something great!
- |
- */
- Route::get('/', function () {
- return redirect('/admin');
- });
- Route::get('/cdms', function () {
- return redirect('/cdms/home');
- });
- Route::get('/api/getComSchedule', 'ScheDuleController@getWeekSchedule');
- Route::get('/getChatOrder', 'ScheDuleController@get_chat_order');
- Route::get('/api/setDocChedule', 'ScheDuleController@setDocChedule');
- Route::get('/api/getDocterSetting', 'ScheDuleController@getDocterSetting');
- Route::get('/api/get_month_schedule', 'ScheDuleController@get_month_schedule');
- Route::get('/api/set_day_schedule', 'ScheDuleController@set_day_schedule');
- Route::get('/api/update_docter_setting', 'ScheDuleController@updateDocterSetting');
- Route::get('/api/get_docter_setting', 'ScheDuleController@getDocterSetting');
- Route::get('/api/set_week_schedule', 'ScheDuleController@setWeekSchedule');
- Route::get('/api/get_week_chedule', 'ScheDuleController@getWeekSchedule');
- Route::get('/api/set_self_schedule', 'ScheDuleController@setSelfSchedule');
- Route::get('/api/insert_times', 'ScheDuleController@insert_times');
- Route::get('/test', 'IndexController@test');
- //用户信息
- Route::get('/api/getScheduleInfo', 'ScheDuleController@getScheduleInfo');
- Route::get('/api/orverTime', 'AppiontController@orverTime');
- Route::options('/api/getAppiontInfo', 'AppiontController@getAppiontInfo');
- Route::post('/api/getAppiontInfo', 'AppiontController@getAppiontInfo');
- Route::get('/api/getAppiontInfo', 'AppiontController@getAppiontInfo');
- Route::get('/api/docterList', 'AppiontController@docterList');
- Route::get('/api/organizationList', 'AppiontController@organizationList');
|