分割标记与表格问题绑定修改
continuous-integration/drone/push Build is passing Details

rj
wangxiaoshuang 2026-05-20 14:58:38 +08:00
parent feb94dc832
commit 36d5661044
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ export default {
} }
if (this.visitInfo.operateStateEnum === 22) { if (this.visitInfo.operateStateEnum === 22) {
let o = {} let o = {}
if (this.isTableQuestion) { if (this.visitInfo.isTableQuestion) {
o.TableQuestionId = this.visitInfo.operateQuestionId o.TableQuestionId = this.visitInfo.operateQuestionId
o.RowId = this.visitInfo.operateRowId o.RowId = this.visitInfo.operateRowId
} else { } else {

View File

@ -416,7 +416,7 @@ export default {
}, },
validatorNumberInput(rule, value, callback) { validatorNumberInput(rule, value, callback) {
let reg = new RegExp(/^(?:-?(?:(?:0|[1-9]\d*)(?:\.\d+)?|\.\d+)|NE)$/, 'g') let reg = new RegExp(/^(?:-?(?:(?:0|[1-9]\d*)(?:\.\d+)?|\.\d+)|NE)$/, 'g')
if (value === '') { if (value === '' || value == null) {
callback(); callback();
} else { } else {
if (!reg.test(value)) { if (!reg.test(value)) {