From 19d68049752df4234edf8d737e71b8052d8da83f Mon Sep 17 00:00:00 2001 From: fengchenchen Date: Tue, 18 Jul 2023 18:34:20 +0800 Subject: [PATCH] =?UTF-8?q?[update]-1=E3=80=81=E4=BC=9A=E5=91=98=E6=8A=A5?= =?UTF-8?q?=E5=90=8D=E9=A1=B5=E9=9D=A2=E5=A2=9E=E5=8A=A0=E5=8F=91=E7=A5=A8?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=202=E3=80=81=E8=AF=81=E4=B9=A6=E5=88=9D?= =?UTF-8?q?=E6=AD=A5=E9=A1=B5=E9=9D=A2=E7=9A=84=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/company/CompanySelect.vue | 12 +- .../signUpForm/OtherMeetingForm.vue | 198 ++++++++++++++---- .../standardsAssociation/JMultiSelectTag.vue | 1 + src/enums/commonEnum.js | 6 + src/views/signUp/SignUpPage.vue | 86 +++++--- .../signUp/modules/InvoiceConfirmModal.vue | 97 +++++++++ .../CertificateManagement.vue | 72 +++---- .../modules/CombinationPaymentModal.vue | 10 +- .../PaymentInfo/modules/PaymentInfoModal.vue | 10 +- .../feehandle/FeeHandle.vue | 80 ++++++- 10 files changed, 435 insertions(+), 137 deletions(-) create mode 100644 src/views/signUp/modules/InvoiceConfirmModal.vue diff --git a/src/components/company/CompanySelect.vue b/src/components/company/CompanySelect.vue index 515b04e..e703fcf 100644 --- a/src/components/company/CompanySelect.vue +++ b/src/components/company/CompanySelect.vue @@ -45,6 +45,12 @@ export default { type: Boolean, required: false, default: true + }, + // 是否返回企业的全部信息,如果是 则再change方法中以第二个参数返回 + fullCompanyInfo: { + type: Boolean, + required: false, + default: false } }, methods: { @@ -69,7 +75,11 @@ export default { id: value.id, companyName: value.companyName } - this.$emit('change', company) + if(this.fullCompanyInfo) { + this.$emit('change', company, {...value}) + } else { + this.$emit('change', company) + } }, /** * 新增企业 diff --git a/src/components/signUpForm/OtherMeetingForm.vue b/src/components/signUpForm/OtherMeetingForm.vue index b9a2343..247f117 100644 --- a/src/components/signUpForm/OtherMeetingForm.vue +++ b/src/components/signUpForm/OtherMeetingForm.vue @@ -1,34 +1,5 @@