12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- use think\facade\Route;
- route::rule('login', 'abutment/Account/login');
- route::rule('getPlatformList', 'abutment/Index/getPlatformList');
- route::rule('getCatList', 'abutment/Index/getCatList');
- route::rule('getBrandList', 'abutment/Index/getBrandList');
- route::rule('getUnitList', 'abutment/Index/getUnitList');
- route::rule('getSpecsTitleList', 'abutment/Index/getSpecsTitleList');
- route::rule('getSpecsValueByTitleList', 'abutment/Index/getSpecsValueByTitleList');
- route::rule('getAreaList', 'abutment/Index/getAreaList');
- route::rule('getCompanyNoList', 'abutment/Index/getCompanyNoList');
- route::rule('getGoodList', 'abutment/Good/list');
- route::rule('createGood', 'abutment/Good/createGood');
- route::rule('updateGoodBasicsInfo', 'abutment/Good/updateGoodBasicsInfo');
- route::rule('updateGoodPriceInfo', 'abutment/Good/updateGoodPriceInfo');
- route::rule('getGoodDetail', 'abutment/Good/read');
- route::rule('getOrderList', 'abutment/Order/getList');
- route::rule('getOrderInfo', 'abutment/Order/info');
- route::rule('changeOrderStatus', 'abutment/Order/status');
- route::rule('addOrderIn', 'abutment/Order/add');
- route::rule('saleOutList', 'abutment/Sale/saleout');
- route::rule('saleOutInfo', 'abutment/Sale/saleOutInfo');
- route::rule('outSend', 'abutment/Sale/outSend');
- route::rule('outSendBatchByImport', 'abutment/Sale/saleOutInfo');
|