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{