分割标记与表格问题绑定修改
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) {
|
||||
let o = {}
|
||||
if (this.isTableQuestion) {
|
||||
if (this.visitInfo.isTableQuestion) {
|
||||
o.TableQuestionId = this.visitInfo.operateQuestionId
|
||||
o.RowId = this.visitInfo.operateRowId
|
||||
} else {
|
||||
|
|
|
|||
|
|
@ -416,7 +416,7 @@ export default {
|
|||
},
|
||||
validatorNumberInput(rule, value, callback) {
|
||||
let reg = new RegExp(/^(?:-?(?:(?:0|[1-9]\d*)(?:\.\d+)?|\.\d+)|NE)$/, 'g')
|
||||
if (value === '') {
|
||||
if (value === '' || value == null) {
|
||||
callback();
|
||||
} else {
|
||||
if (!reg.test(value)) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue