From e043cc00d126428875d71c71dab88d7deb7ba778 Mon Sep 17 00:00:00 2001 From: Rui_Li <877258667@qq.com> Date: Fri, 15 Apr 2022 09:34:31 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=86=E5=88=87=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../modules/yieldReport/com_separate_roll_with_split.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/modules/yieldReport/com_separate_roll_with_split.vue b/src/views/modules/yieldReport/com_separate_roll_with_split.vue index 731c57f..e5f1b53 100644 --- a/src/views/modules/yieldReport/com_separate_roll_with_split.vue +++ b/src/views/modules/yieldReport/com_separate_roll_with_split.vue @@ -424,17 +424,17 @@ export default { let fgPartNo = this.pageData.fgPartNo.trim() let supplierId = this.pageData.supplierId.trim() //判断是否存在客户编码 - if (customerId === '' || customerId === '无') { + if (customerId === '') { this.$message.error('请选择有效的客户编码!') return false } //判断是否存在产品编码 - if (fgPartNo === '' || fgPartNo === '无') { + if (fgPartNo === '') { this.$message.error('请选择有效的产品编码!') return false } //判断是否存在供应商 - if (supplierId === '' || supplierId === '*') { + if (supplierId === '') { this.$message.error('供应商编码有误!') return false }