diff --git a/components/buns-post-edit-templates/bpe-cost-tmp.vue b/components/buns-post-edit-templates/bpe-cost-tmp.vue index 0b300cf..89cd0f9 100644 --- a/components/buns-post-edit-templates/bpe-cost-tmp.vue +++ b/components/buns-post-edit-templates/bpe-cost-tmp.vue @@ -179,12 +179,12 @@ if(JSON.stringify(newVal) == JSON.stringify(oldVal || {})) { return false } - let mustObj = JSON.parse(JSON.stringify(newVal)) + let mustObj = Object.assign({}, newVal) notMustKey.map(key=> { delete mustObj[key] }) let mustVals = Object.values(mustObj) // 所有关联入参都有值或者为0再 执行自动计算,数据未变化不做计算 if(mustVals.length == mustVals.filter(v => (v==0 || !!v)).length) { - console.log("====watch cost calcWaybillFee===") + console.log("====watch cost calcWaybillFee===", newVal) this.calcWaybillFee(newVal); } }, diff --git a/manifest.json b/manifest.json index 4d08d78..0f813f8 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "appid" : "__UNI__BCB0FB5", "description" : "探路国际速运", "versionName" : "1.0.1", - "versionCode" : "1050", + "versionCode" : "1051", "transformPx" : false, /* 5+App特有相关 */ "app-plus" : { diff --git a/pages/post/openorder.vue b/pages/post/openorder.vue index 551f918..ff1e044 100644 --- a/pages/post/openorder.vue +++ b/pages/post/openorder.vue @@ -430,6 +430,7 @@ if(this.queryOption.copyBillCode) { delete this.submitParam.billCode delete this.submitParam.orderSn + this.submitParam.sendDate = getOrderModels().sendDate } } this.pageLoading = false diff --git a/pages/warehousing/detail.vue b/pages/warehousing/detail.vue index 317bff5..f232b47 100644 --- a/pages/warehousing/detail.vue +++ b/pages/warehousing/detail.vue @@ -1,5 +1,5 @@