From 2d2e099e0dfabf386bef0e069841a0ce01a7f6a5 Mon Sep 17 00:00:00 2001 From: aihe <961836564@qq.com> Date: Wed, 31 Jul 2024 01:15:38 +0800 Subject: [PATCH] uu --- common/api/order.js | 6 +++ common/api/url.js | 1 + .../bpe-bindedpost-tmp.vue | 30 +++++++++-- .../bpe-choosetypelist-tmp.vue | 26 +++++++--- pages.json | 2 +- pages/post/post.vue | 50 +++++++++++++------ pages/tabBar/sending/sending.vue | 17 ++++--- 7 files changed, 98 insertions(+), 34 deletions(-) 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 @@