From 7f3ef3f01da0c73a6b12b251d9628fc9d4f59cde Mon Sep 17 00:00:00 2001 From: Smile <2767057906@qq.com> Date: Tue, 11 Mar 2025 15:50:35 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9C=80=E6=B1=82134=E5=90=8E=E5=8F=B0-?= =?UTF-8?q?=E9=9B=86=E8=BF=90-=E5=8C=85=E8=A3=B9=E5=88=97=E8=A1=A8-?= =?UTF-8?q?=E8=BD=AC=E8=BF=90=20=E5=AE=A2=E6=88=B7=E8=81=94=E7=B3=BB?= =?UTF-8?q?=E4=BA=BA=E8=AF=B7=E6=B1=82=E5=BD=93=E6=98=AF=E7=AD=9B=E9=80=89?= =?UTF-8?q?=E6=97=B6=E8=BF=94=E5=9B=9E=E5=BC=80=E9=80=9A=E9=9B=86=E8=BF=90?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=AE=A2=E6=88=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ChooseContactDialog/index.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/ChooseContactDialog/index.vue b/src/components/ChooseContactDialog/index.vue index aac147fd..79809816 100644 --- a/src/components/ChooseContactDialog/index.vue +++ b/src/components/ChooseContactDialog/index.vue @@ -82,6 +82,10 @@ export default { components: {UserSelector}, props: { type: Number, + isConsTransform: { + type: Boolean, + default: false, + }, }, data() { return { @@ -113,6 +117,9 @@ export default { this.total = res.data.total; }); } else { + if (this.isConsTransform){ + this.form.isConsTransform = this.isConsTransform; + } getCustomerContactsSelect(this.form).then((res) => { this.list = res.data.list; this.total = res.data.total; -- 2.22.0