1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?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('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');//咨询采反查询
|