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 }