|
|
@@ -125,7 +125,8 @@ const install = (Vue, vm) => {
|
|
125
|
125
|
getPersonCards:(params)=>http.get(store.state.user.path+'/personCenter/getPersonCards',{ params }),//个人中心-获取个人中心数据
|
|
126
|
126
|
getPersonLatestClue:(params)=>http.get(store.state.user.path+'/personCenter/getPersonLatestClue',{ params }),//个人中心-获取最新线索
|
|
127
|
127
|
getPersonRanking:(params)=>http.get(store.state.user.path+'/personCenter/getPersonRanking',{ params }),//个人中心-获取个人排名
|
|
128
|
|
- getWareHouseCard:(params)=>http.get(store.state.user.path+'/warehouse/getWareHouseCard',{ params }),//仓库中心-获取仓库信息
|
|
|
128
|
+ getWareHouseCard:(params)=>http.get(store.state.user.path+'/warehouse/getWareHouseCard',{ params }),//仓库中心-获取仓库信息(无筛选)
|
|
|
129
|
+ getWareHouseCardPost:(data)=>http.post(store.state.user.path+'/warehouse/getWareHouseCard', data || {}),//仓库中心-卡片数据(支持与列表相同筛选条件)
|
|
129
|
130
|
inquiryChart:(data)=>http.post(store.state.user.path+'/warehouse/getPriceChart',data),//询价中心-获取询价图表数据
|
|
130
|
131
|
addInquiry:(data)=>http.post(store.state.user.path+'/inquiryCenter/addInquiry',data),//添加/编辑询价 有id是编辑 没有id是添加
|
|
131
|
132
|
inquiryDetail:(data)=>http.post(store.state.user.path+'/inquiryCenter/getInquiryDetail',data),//询价详情
|