From 4414d3f71f20b1d8182d07fadbbb4cb40f3c1707 Mon Sep 17 00:00:00 2001
From: aihe <961836564@qq.com>
Date: Tue, 28 May 2024 12:32:43 +0800
Subject: [PATCH] uu
---
components/buns-post-edit-templates/bpe-cost-tmp.vue | 11 ++++++++---
components/tpx-input/tpx-input.vue | 7 ++++++-
pages/address/list.vue | 2 +-
pages/post/freightCalculate.vue | 2 ++
4 files changed, 17 insertions(+), 5 deletions(-)
diff --git a/components/buns-post-edit-templates/bpe-cost-tmp.vue b/components/buns-post-edit-templates/bpe-cost-tmp.vue
index b6c951e..efbbef5 100644
--- a/components/buns-post-edit-templates/bpe-cost-tmp.vue
+++ b/components/buns-post-edit-templates/bpe-cost-tmp.vue
@@ -45,10 +45,15 @@
-
+
总费用
-
+
+
+
+
+ {{modelInfo.freight || 0}}CNY
+
diff --git a/components/tpx-input/tpx-input.vue b/components/tpx-input/tpx-input.vue
index 8f3811a..160d926 100644
--- a/components/tpx-input/tpx-input.vue
+++ b/components/tpx-input/tpx-input.vue
@@ -2,7 +2,7 @@
{{suffix}}
@@ -51,6 +51,11 @@
return ''
}
},
+ disabled:{
+ default () {
+ return false
+ }
+ },
placeholder:{
default () {
return ''
diff --git a/pages/address/list.vue b/pages/address/list.vue
index 8bbc4d0..bf80b6a 100644
--- a/pages/address/list.vue
+++ b/pages/address/list.vue
@@ -88,7 +88,7 @@
const tabList = [
{ title: '寄件地址', val: 1 },
{ title: '收件地址', val: 2 },
- { title: '其他', val: 3 }
+ // { title: '其他', val: 3 }
]
export default {
props: {
diff --git a/pages/post/freightCalculate.vue b/pages/post/freightCalculate.vue
index 18b810f..af929f4 100644
--- a/pages/post/freightCalculate.vue
+++ b/pages/post/freightCalculate.vue
@@ -260,6 +260,8 @@
async handleCalPost(type) {
let params = JSON.parse(JSON.stringify(this.submitParam));
params.calcFeeType = 1 // "计费类型 1-重量计费 2-体积计费"
+ this.proTypeList = []
+ this.submitParam.productType = ''
let res = await apiService.preCalcWaybillFee({ ...params, _loading: true })
this.proTypeList = res.data || []
if(this.proTypeList.length > 0) {