系统标准配置更改
parent
4f1fdb185f
commit
38ad4e72a2
|
@ -890,6 +890,7 @@ export default {
|
||||||
mounted() {
|
mounted() {
|
||||||
this.initForm()
|
this.initForm()
|
||||||
this.getCalculateQuestions('number')
|
this.getCalculateQuestions('number')
|
||||||
|
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
typeValueChange(v) {
|
typeValueChange(v) {
|
||||||
|
@ -905,6 +906,14 @@ export default {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
getBasicConfigSelect() {
|
||||||
|
getCriterionDictionaryList({
|
||||||
|
CriterionId: this.criterionId,
|
||||||
|
SystemCriterionId: this.criterionId
|
||||||
|
}).then(res => {
|
||||||
|
this.dicList = res.Result
|
||||||
|
})
|
||||||
|
},
|
||||||
getCalculateQuestions(type) {
|
getCalculateQuestions(type) {
|
||||||
getSystemCalculateQuestions({
|
getSystemCalculateQuestions({
|
||||||
systemCriterionId: this.criterionId,
|
systemCriterionId: this.criterionId,
|
||||||
|
@ -944,6 +953,7 @@ export default {
|
||||||
await this.getParentQuestions()
|
await this.getParentQuestions()
|
||||||
await this.getLesionTypeDictionary()
|
await this.getLesionTypeDictionary()
|
||||||
await this.getLesionType()
|
await this.getLesionType()
|
||||||
|
await this.getBasicConfigSelect()
|
||||||
if (Object.keys(this.data).length > 0) {
|
if (Object.keys(this.data).length > 0) {
|
||||||
for (const k in this.form) {
|
for (const k in this.form) {
|
||||||
if (this.data.hasOwnProperty(k)) {
|
if (this.data.hasOwnProperty(k)) {
|
||||||
|
|
Loading…
Reference in New Issue