From 3a02cd10f5bb7e6322efd155599ff0e9f6e6825b Mon Sep 17 00:00:00 2001 From: linfso Date: Mon, 23 Dec 2024 09:59:42 +0800 Subject: [PATCH] md --- src/views/emis/emisWaybill/waybillRecord.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/views/emis/emisWaybill/waybillRecord.vue b/src/views/emis/emisWaybill/waybillRecord.vue index b721fa76..4c5f3684 100644 --- a/src/views/emis/emisWaybill/waybillRecord.vue +++ b/src/views/emis/emisWaybill/waybillRecord.vue @@ -1039,10 +1039,19 @@ computed: { if(this.$route.query.addFrom=="userOrder"){ this.addFrom="userOrder"; this.billCode=this.$route.query.billCode; - // this.$route.meta.title = "接单"; + + const title = '接单'; + const route = Object.assign({}, this.$route, { title: `${title}` }) + this.$store.dispatch('tagsView/updateVisitedView', route) + }else{ this.addFrom=null; this.billCode=null; + + const title = '运单录入'; + const route = Object.assign({}, this.$route, { title: `${title}` }) + this.$store.dispatch('tagsView/updateVisitedView', route) + } this.initData(); }