|
@@ -14,6 +14,17 @@ Route::group([
|
|
|
'middleware' => config('admin.route.middleware'),
|
|
|
'as' => config('admin.route.prefix') . '.',
|
|
|
], function (Router $router) {
|
|
|
+
|
|
|
+ //region ===药品路由
|
|
|
+ $router->resource('medicine', 'MedicineController');
|
|
|
+ $router->get('/medicine/create', 'MedicineController@create');
|
|
|
+ $router->get('/medicine/edit/(id)', 'MedicineController@edit');
|
|
|
+ //symptom_keywords ===匹配症状关键词
|
|
|
+ $router->resource('symptom_keywords', 'SymptomKeywordsController');
|
|
|
+ $router->get('/symptom_keywords/create', 'SymptomKeywordsController@create');
|
|
|
+ $router->get('/symptom_keywords/edit/(id)', 'SymptomKeywordsController@edit');
|
|
|
+ //endregion
|
|
|
+ $router->resource('propaganda', 'PropagandaController');
|
|
|
$router->get('/', 'HomeController@index')->name('home');
|
|
|
//输血规则路由
|
|
|
$router->get('api/blood_transfusion_rules','BloodTransfusionRulesController@getBloodTransfusionRules');//获取所有输血规则
|
|
@@ -67,7 +78,7 @@ Route::group([
|
|
|
$router->resource('cdss-xy-disease' , 'CdssXyDiseaseController'); // cdss西医疾病
|
|
|
$router->resource('knowledge-rules' , 'KnowledgeRuleController'); // 检查检验规则
|
|
|
$router->resource('medical-calculators' , 'MedicalCalculatorController');//医学计算器
|
|
|
-
|
|
|
+
|
|
|
|
|
|
//中医
|
|
|
$router->resource('zh-SickNess' , 'ZhSickNessController');//疾病
|
|
@@ -102,8 +113,8 @@ Route::group([
|
|
|
$router->resource('qw-hisroy-list' , 'QwHistoryController'); // 问答历史记录
|
|
|
$router->get('ll' , 'QwCategoryController@ll'); // 问答分类选项联动
|
|
|
$router->get('ll' , 'QwController@ll'); // 问答选项联动
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
});
|
|
|
|
|
|
|