diff --git a/common/api/order.js b/common/api/order.js index 0097291..e4c11f5 100644 --- a/common/api/order.js +++ b/common/api/order.js @@ -32,6 +32,12 @@ export const preCalcWaybillFee = (data = {})=> { return coreRequest(url.preCalcWaybillFee, { ...data }, {}) } +// 下单-报价试算 +export const calcProductFee = (data = {})=> { + return coreRequest(url.calcProductFee, { ...data }, {}) +} + + // 物流轨迹 export const queryWaybillTraceInfo = (data = {})=> { return coreRequest(url.queryWaybillTraceInfo, { ...data }, {}, "GET") diff --git a/common/api/url.js b/common/api/url.js index 9550991..cc2ae2f 100644 --- a/common/api/url.js +++ b/common/api/url.js @@ -48,6 +48,7 @@ export default { getNextStationList: `/oms2c/emisTmsScanRecord/getNextStationList`, // 获取-扫描下一网点 getPreStationList: `/oms2c/emisTmsScanRecord/getPreStationList`, // 获取-扫描上一网点 preCalcWaybillFee: `/oms2c/emisWaybill/preCalcWaybillFee`, // 报价试算 -- DONE + calcProductFee: `/oms2c/emisWaybill/calcProductFee`, // 下单-报价试算 -- DONE queryWaybillTraceInfo: `/oms2c/emisTmsScanRecord/queryWaybillTraceInfo`, // 物流轨迹 -- DONE queryProblemTypeList: `/oms2c/emisProblemType/listSimple`, // 问题件类型列表 registerProblemInfo: `/oms2c/emisWaybillProblemInfo/registerProblemInfo`, // 问题件登记 diff --git a/components/buns-post-edit-templates/bpe-bindedpost-tmp.vue b/components/buns-post-edit-templates/bpe-bindedpost-tmp.vue index 47cc1ee..8423171 100644 --- a/components/buns-post-edit-templates/bpe-bindedpost-tmp.vue +++ b/components/buns-post-edit-templates/bpe-bindedpost-tmp.vue @@ -1,10 +1,24 @@