From 068cec5fa35e30309c25809bb243a721859ba0ad Mon Sep 17 00:00:00 2001 From: mengxiaolong Date: Fri, 5 Mar 2021 15:31:49 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=8E=E9=99=AA=E8=AE=BF=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E8=BF=9B=E5=85=A5=E6=97=B6=E5=9B=BA=E5=AE=9A=E9=99=AA=E8=AE=BF?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/common/PopupSelector.vue | 5 +++++ src/views/ebiz/eqiVisit/VisitInfoRegister.vue | 20 ++++++++++++++++--- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/src/components/common/PopupSelector.vue b/src/components/common/PopupSelector.vue index 1211c105b..584a8126f 100644 --- a/src/components/common/PopupSelector.vue +++ b/src/components/common/PopupSelector.vue @@ -33,6 +33,10 @@ export default { readonly: { type: Boolean, default: false + }, + isDisabled: { + type: Boolean, + default: false } }, data() { @@ -42,6 +46,7 @@ export default { }, methods: { showPopup() { + if (this.isDisabled) return this.isShow = true }, closePopup() { diff --git a/src/views/ebiz/eqiVisit/VisitInfoRegister.vue b/src/views/ebiz/eqiVisit/VisitInfoRegister.vue index f662271fa..ca40ec4a0 100644 --- a/src/views/ebiz/eqiVisit/VisitInfoRegister.vue +++ b/src/views/ebiz/eqiVisit/VisitInfoRegister.vue @@ -27,6 +27,7 @@ :columns="visitTypes" name="陪访类型" v-validate="'required'" + :isDisabled="isAcTypeDisabled" />