|
|
@ -285,6 +285,8 @@ Route::get('/mrtx', 'List/index')->name('List/index?id=191')->append(array('id' |
|
|
Route::get('/mrtx/:id', 'Detail/index')->name('Detail/index?cid=191')->append(array('cid' => '191',)) |
|
|
Route::get('/mrtx/:id', 'Detail/index')->name('Detail/index?cid=191')->append(array('cid' => '191',)) |
|
|
->pattern(array('id' => '\d+', 'cid' => '\d+',)); |
|
|
->pattern(array('id' => '\d+', 'cid' => '\d+',)); |
|
|
|
|
|
|
|
|
|
|
|
Route::get('/ycbl', 'List/index')->name('List/index?id=216')->append(array('id' => '216',)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -322,7 +324,6 @@ Route::get('/calendar-article-list', 'Search/searchCalendar'); |
|
|
Route::get('/calendar-article-detail', 'Search/searchOneArticle'); |
|
|
Route::get('/calendar-article-detail', 'Search/searchOneArticle'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 表单
|
|
|
// 表单
|
|
|
|
|
|
|
|
|
Route::get('/c/:code', 'Form/index')->name('Form/index') |
|
|
Route::get('/c/:code', 'Form/index')->name('Form/index') |
|
|
@ -334,6 +335,17 @@ Route::post('/addFormData', 'Form/save'); |
|
|
Route::post('/uploadFormFile', 'Form/uploadFormFile'); |
|
|
Route::post('/uploadFormFile', 'Form/uploadFormFile'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 数据处理, 输入导入 ==================================================== STRT
|
|
|
|
|
|
|
|
|
|
|
|
Route::post('/dealDataToNew', 'Form/dealDataToNew'); |
|
|
|
|
|
|
|
|
|
|
|
// 数据处理, 输入导入 ==================================================== END
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Route::get('/down/:id', 'Form/downFile')->name('Form/downFile') |
|
|
Route::get('/down/:id', 'Form/downFile')->name('Form/downFile') |
|
|
|
|
|
|
|
|
->pattern(array('id' => '\d+')); |
|
|
->pattern(array('id' => '\d+')); |
|
|
|