diff --git a/common/api/order.js b/common/api/order.js index dbe97db..9be5791 100644 --- a/common/api/order.js +++ b/common/api/order.js @@ -29,12 +29,12 @@ export const getRSDStaffList = (data = {})=> { // 报价试算 export const preCalcWaybillFee = (data = {})=> { - return coreRequest(url.preCalcWaybillFee, { ...data, postCode: 'RSD' }, {}) + return coreRequest(url.preCalcWaybillFee, { ...data }, {}) } // 物流轨迹 export const queryWaybillTraceInfo = (data = {})=> { - return coreRequest(url.queryWaybillTraceInfo, { ...data, postCode: 'RSD' }, {}, "GET") + return coreRequest(url.queryWaybillTraceInfo, { ...data }, {}, "GET") } diff --git a/common/api/url.js b/common/api/url.js index 47ebcc1..bac0edd 100644 --- a/common/api/url.js +++ b/common/api/url.js @@ -39,7 +39,7 @@ export default { queryPrintListSimple: `/oms2c/emisWaybill/queryPrintListSimple`, // 运单 打印数据-列表 getNextStationList: `/oms2c/emisTmsScanRecord/getNextStationList`, // 获取-扫描下一网点 getPreStationList: `/oms2c/emisTmsScanRecord/getPreStationList`, // 获取-扫描上一网点 - preCalcWaybillFee: `/oms2c/emisWaybill/preCalcWaybillFee`, // 报价试算 + preCalcWaybillFee: `/oms2c/emisWaybill/preCalcWaybillFee`, // 报价试算 -- DONE queryWaybillTraceInfo: `/oms2c/emisTmsScanRecord/queryWaybillTraceInfo`, // 物流轨迹 queryProblemTypeList: `/oms2c/emisProblemType/listSimple`, // 问题件类型列表 registerProblemInfo: `/oms2c/emisWaybillProblemInfo/registerProblemInfo`, // 问题件登记 diff --git a/components/buns-post-edit-templates/bpe-choosetypelist-tmp.vue b/components/buns-post-edit-templates/bpe-choosetypelist-tmp.vue index a54dc36..ce7a771 100644 --- a/components/buns-post-edit-templates/bpe-choosetypelist-tmp.vue +++ b/components/buns-post-edit-templates/bpe-choosetypelist-tmp.vue @@ -1,14 +1,16 @@ diff --git a/pages/post/post.vue b/pages/post/post.vue index 7f77af4..87d0791 100644 --- a/pages/post/post.vue +++ b/pages/post/post.vue @@ -179,10 +179,6 @@ waySearchParam() { return { country: this.submitParam.reciever.country, fromCountry: this.submitParam.sender.country } }, - destPostParam(){ - const { country } = this.submitParam.reciever - return { lineCode: this.submitParam.transLine, countryCode: country } - }, dicData() { return this.$store.getters.dicData },