12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?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('createSpec', 'abutment/Good/createSpec');
- route::rule('allSpec', 'abutment/Good/allSpec');
- route::rule('editGoodUp', 'abutment/Good/editGoodUp');
- route::rule('catInfo', 'abutment/Good/catInfo');
- route::rule('goldPriceLastList', 'abutment/Good/goldPriceLastList');
- 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');
- route::rule('goodZxInfo', 'abutment/Sale/goodzxinfo');
- route::rule('exportSaleOut', 'abutment/Sale/exportSaleOut');
- route::rule('outInfo', 'abutment/Sale/outInfo');
- route::rule('crontabList', 'abutment/Consult/crontablist');
- route::rule('consultZxInfo', 'abutment/Consult/zxinfo');
- route::rule('consultBidList', 'abutment/Consult/bidlist');
- route::rule('consultCreate', 'abutment/Consult/create');
- route::rule('consultBidListCopy', 'abutment/Consult/bidlistCopy');
|