From cac1df091c1fba11d9328f1760b04acfd9876086 Mon Sep 17 00:00:00 2001 From: sunzehua Date: Fri, 8 Nov 2024 14:47:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E7=A5=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../operation/invoiceIssue/detail/index.vue | 25 +++---------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/src/views/operation/invoiceIssue/detail/index.vue b/src/views/operation/invoiceIssue/detail/index.vue index 2a61955e..6360aaa0 100644 --- a/src/views/operation/invoiceIssue/detail/index.vue +++ b/src/views/operation/invoiceIssue/detail/index.vue @@ -340,18 +340,7 @@
- - + @@ -547,11 +536,13 @@ const detailForm = [ { field: 'cellPhoneNOFlag', component: 'Input', + defaultValue: true, show: false, colProps: { span: 24 }, }, { field: 'emailFlag', + defaultValue: true, show: false, component: 'Input', colProps: { span: 24 }, @@ -560,14 +551,12 @@ const detailForm = [ field: 'email', label: '邮箱', component: 'Input', - slot: 'email', colProps: { span: 24 }, }, { field: 'cellPhoneNO', label: '手机', component: 'Input', - slot: 'cellPhoneNO', colProps: { span: 24 }, }, { @@ -817,14 +806,6 @@ function getDetail() { } res.data.emailFlag = false res.data.cellPhoneNOFlag = false - res.data.pushModeValues.forEach(item => { - if (item == 1) { - res.data.emailFlag = true - } - if (item == 2) { - res.data.cellPhoneNOFlag = true - } - }) res.data.applyAmount = numberThousandFormat(res.data.applyAmount, 2, false) res.data.otherInvoiceAmount = numberThousandFormat(res.data.otherInvoiceAmount, 2, false) res.data.invoiceAmount = numberThousandFormat(res.data.invoiceAmount, 2, false)