| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?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('login');
- });
- Route::get('test/{method}', 'TestController@method'); //测试
- Route::get('password/change', 'Auth\PasswordController@change'); //测试
- Route::post('password/update', 'Auth\PasswordController@update'); //测试
- Auth::routes();
- Route::get('/home', 'HomeController@index')->name('home');
- Route::get('maintenance/commodity/import', 'CommodityController@import');
- Route::post('maintenance/commodity/import/excel', 'CommodityController@importExcel');
- Route::resource('maintenance/log', 'LogController');
- Route::resource('maintenance/user', 'UserController');
- Route::resource('maintenance/role', 'RoleController');
- Route::resource('maintenance/authority', 'AuthorityController');
- Route::resource('maintenance/owner', 'OwnerController');
- Route::resource('maintenance/logistic', 'LogisticController');
- Route::resource('maintenance/qualityLabel', 'QualityLabelController');
- Route::resource('maintenance/carrier', 'CarriersController');
- Route::resource('maintenance/carType','CarTypesController');
- Route::resource('maintenance/unit','UnitsController');
- Route::resource('maintenance/province','ProvincesController');
- Route::resource('maintenance/city','CitiesController');
- Route::resource('maintenance/commodity', 'CommodityController');
- Route::resource('maintenance/measuringMachine', 'MeasuringMachineController');
- Route::get('maintenance/paperBox/index/model', 'PaperBoxController@indexModel');
- Route::get('maintenance/paperBox/index/owner', 'PaperBoxController@indexOwner');
- Route::resource('maintenance/paperBox', 'PaperBoxController');
- Route::get('waybill/relating',function (){return view('waybill.menuWaybill');});
- Route::resource('maintenance/waybillPriceModel','WaybillPriceModelsController');
- Route::get('maintenance/waybillPriceModel/excel/goImport',function (){return view('maintenance.waybillPriceModel.import');});
- Route::get('maintenance/waybillPriceModel/cities/{province_id}','WaybillPriceModelsController@getCities');
- Route::get('waybill/waybillFinancialSnapshot/ZF','WaybillFinancialSnapshotsController@indexZF');
- Route::get('waybill/waybillFinancialSnapshot/ZX','WaybillFinancialSnapshotsController@indexZX');
- Route::get('waybill/waybillFinancialExcepted/ZF','WaybillFinancialExceptedController@indexZF');
- Route::get('waybill/waybillFinancialExcepted/ZX','WaybillFinancialExceptedController@indexZX');
- Route::resource('waybill/waybillFinancialSnapshot','WaybillFinancialSnapshotsController');
- Route::resource('waybill/waybillFinancialExcepted','WaybillFinancialExceptedController');
- Route::any('waybill/create/ZF','WaybillsController@createZF');
- Route::any('waybill/create/ZX','WaybillsController@createZX');
- Route::get('waybill/index','WaybillsController@index');
- Route::resource('waybill','WaybillsController');
- Route::get('waybill/index/ZF','WaybillsController@indexZF');
- Route::get('waybill/index/ZX','WaybillsController@indexZX');
- Route::post('waybill/is/waybillPriceModel','WaybillsController@isWaybillPriceModel');
- Route::any('waybill/waybillAudit','WaybillsController@waybillAudit');
- Route::any('waybill/waybillEdit/{id}','WaybillsController@waybillEdit');
- Route::any('waybill/waybillRetreatAudit','WaybillsController@waybillRetreatAudit');
- Route::any('waybill/waybillEndAudit','WaybillsController@waybillEndAudit');
- Route::any('waybillExport/{id}','WaybillsController@waybillExport');
- Route::any('waybill/waybillUpdate/{id}','WaybillsController@waybillUpdate');
- Route::any('waybillFinancialSnapshot/export/{id}','WaybillFinancialSnapshotsController@export');
- Route::post('waybillPriceModel/excel/import','WaybillPriceModelsController@import');
- Route::resource('weigh/measureMonitor','MeasureMonitorController');
- Route::get('weigh/relating', function () {return view('weigh.menuWeigh');});
- Route::post('rejectedBill/{rejectedBill}/edit', 'RejectedBillController@edit');
- Route::resource('rejectedBill', 'RejectedBillController');
- Route::get('rejected/import', 'RejectedController@import');
- Route::post('rejected/import/excel', 'RejectedController@importExcel');
- Route::get('rejected/relating', function () {return view('rejected.relating');});
- Route::get('rejected/recycle', 'RejectedController@recycle');
- Route::post('rejected/ajaxCheck', 'RejectedController@ajaxCheck');
- Route::post('rejected/ajaxCheckAll', 'RejectedController@ajaxCheckAll');
- Route::post('rejected/ajaxFinishAll', 'RejectedController@ajaxFinishAll');
- Route::post('rejected/exportExcel', 'RejectedController@exportExcel');
- Route::post('rejected/exportExcelOnFilterParams', 'RejectedController@exportExcelOnFilterParams');
- Route::resource('rejected', 'RejectedController');
- Route::get('maintenance/', function () {return view('maintenance.index');});
- Route::get('weigh/', function () {return view('weigh.index');});
- Route::any('test/{method}', 'TestController@method'); //测试
|