From b068c452c74322783d783fd59228503ce27075c4 Mon Sep 17 00:00:00 2001 From: wangyufei <2267742828@qq.com> Date: Tue, 18 Jun 2024 15:01:34 +0800 Subject: [PATCH] =?UTF-8?q?1,3,6=20=E5=8F=AF=E7=BC=96=E8=BE=91=EF=BC=8C?= =?UTF-8?q?=E5=85=B6=E4=BB=96=E9=83=BD=E4=B8=8D=E5=8F=AF=E7=BC=96=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../supplierinvoiceRequestMain/index.vue | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue b/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue index 33039398a..55775467a 100644 --- a/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue +++ b/src/views/wms/supplierManage/supplierinvoice/supplierinvoiceRequestMain/index.vue @@ -451,27 +451,26 @@ const handleImport = () => { if(item.field == 'orderType'){ item.componentProps.disabled = true } - if(row.status=='3'){ + if(row.status=='1'||row.status=='3'||row.status=='6'){ if(item.field == 'procurementCreator'){ // 采购价格审批人 - item.componentProps.disabled = true + item.componentProps.disabled = false } if(item.field == 'taxRate'){ // 税率 - item.componentProps.disabled = true + item.componentProps.disabled = false } }else{ if(item.field == 'procurementCreator'){ // 采购价格审批人 - item.componentProps.disabled = false + item.componentProps.disabled = true } if(item.field == 'taxRate'){ // 税率 - item.componentProps.disabled = false + item.componentProps.disabled = true } } - }) }else{