分割标记与表格问题绑定修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
feb94dc832
commit
36d5661044
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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)) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue