阅片更改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
9568186497
commit
f1c36ea688
|
|
@ -1162,6 +1162,9 @@ export default {
|
|||
if (isNAN) {
|
||||
num = ''
|
||||
}
|
||||
if (isNaN(parseFloat(num))) {
|
||||
num = Number(num).toFixed(this.digitPlaces)
|
||||
}
|
||||
this.$set(this.QuestionsForm, v.Id, num.toString());
|
||||
}
|
||||
});
|
||||
|
|
|
|||
|
|
@ -333,6 +333,10 @@ export default {
|
|||
}
|
||||
this.$refs.readingChart_report.init(e, obj, zIndex)
|
||||
},
|
||||
foo() {
|
||||
if (!this.$refs.readingChart_report) return false
|
||||
this.$refs.readingChart_report.foo()
|
||||
},
|
||||
limitBlur(questionForm, id, valueType) {
|
||||
const value = questionForm[id]
|
||||
if (valueType === 0) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue