12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?php
- use think\facade\Route;
- route::rule('getPlatformList', 'abutment/Index/getPlatformList');
- route::rule('getCatList', 'abutment/Index/getCatList');
- route::rule('getBrandList', 'abutment/Index/getBrandList');
- route::rule('brandList', 'abutment/Index/brandList');
- 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('businessList', 'abutment/Index/businessList');
- route::rule('getExclusiveList', 'abutment/Index/getExclusiveList');
- route::rule('uploadImg', 'abutment/Index/uploadImg');
- 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('goldLinst', 'abutment/Good/linst');
- route::rule('catList', 'abutment/Good/wlist');
- route::rule('catListTitle', 'abutment/Good/title');
- route::rule('checkIsUpdate', 'abutment/Good/checkIsUpdate');
- route::rule('goodCopy', 'abutment/Good/copy');
- route::rule('goodInfo', 'abutment/Good/info');
- 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('exportCgdList', 'abutment/Order/exportCgdList');
- route::rule('saleOutList', 'abutment/Sale/saleout');
- route::rule('saleOutInfo', 'abutment/Sale/saleOutInfo');
- route::rule('outSend', 'abutment/Sale/outSend');
- route::rule('outSendBatchByImport', 'abutment/Sale/outSendBatchByImport');
- route::rule('goodZxInfo', 'abutment/Sale/goodzxinfo');
- route::rule('exportSaleOut', 'abutment/Sale/exportSaleOut');
- route::rule('outInfo', 'abutment/Sale/outInfo');
- route::rule('getGoodZxInfoByNotZixun', 'abutment/Sale/getGoodZxInfoByNotZixun');
- 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');
- route::rule('consultFeadInfo', 'abutment/Consult/feadinfo');
- route::rule('consultFeadback', 'abutment/Consult/feadback');
- route::rule('consultFeadEdit', 'abutment/Consult/feededit');
|