摘要:
myCheckNumber (rule, value, cb) { if (value !== '') { const v = parseInt(value) if (v < 1 || v > 5000) { return cb('取值范围是1-5000') } else if (!/^[1-9]\d*$/.test(value)) { cb('请输入正确数字') } else { cb() } 阅读全文
摘要:
this.failIdsStr = '' if (this.currentStatus 3) { this.failIdsCount = this.tmpData.invalid_ids_count + this.tmpData.repeat_ids_count let tmpStr = (this 阅读全文