From b03f69559a75ddf81f5cfbaa9f39d17435bbc915 Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Mon, 13 Apr 2026 17:04:01 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=A8=E8=BF=B9=E5=BC=82=E5=B8=B8=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=E8=BF=90=E5=8D=95=E6=9F=A5=E8=AF=A2=E6=90=BA=E5=B8=A6?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/XdTextareaInput/index.vue | 5 +++++ src/views/emis/emisWaybill/sendWaybillList.vue | 8 ++++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/src/components/XdTextareaInput/index.vue b/src/components/XdTextareaInput/index.vue index dd01d1cf..37b38e4a 100644 --- a/src/components/XdTextareaInput/index.vue +++ b/src/components/XdTextareaInput/index.vue @@ -44,6 +44,11 @@ export default { svalue:this.value, } }, + watch: { + value(newVal) { + this.svalue = newVal; + } + }, methods: { onClear(){ this.svalue=null; diff --git a/src/views/emis/emisWaybill/sendWaybillList.vue b/src/views/emis/emisWaybill/sendWaybillList.vue index 441e9256..cbc0ddc5 100644 --- a/src/views/emis/emisWaybill/sendWaybillList.vue +++ b/src/views/emis/emisWaybill/sendWaybillList.vue @@ -924,7 +924,8 @@ export default { } }, watch: { - $route () { + $route (to,from) { + const billCode = to.query.billCode; if(this.$route.query.action=='queryByCredit'){ if(this.$route.query.custNo!=null){ this.queryParams.custNo=this.$route.query.custNo; @@ -951,7 +952,10 @@ export default { this.getList(); } - + if(billCode){ + this.queryParams.billCode = billCode; + this.getList(); + } } }, created() {