|
@@ -301,7 +301,7 @@ export default {
|
|
|
it => it.conceptId === this.form.parConceptId
|
|
|
);
|
|
|
if (this.firstPlace) {
|
|
|
- this.firstPlace['checkedType'] = this.ruleTermCodeStr;
|
|
|
+ this.firstPlace['checkedType'] = this.ruleTermCodeStrs;
|
|
|
}
|
|
|
} else if (!this.form.parConceptId) {
|
|
|
this.setInitGroupData();
|
|
@@ -406,7 +406,7 @@ export default {
|
|
|
if (val && this.checkFirstPlace && this.conceptList) {
|
|
|
this.firstPlace = this.conceptList.find(it => it.conceptId === val);
|
|
|
if (this.firstPlace) {
|
|
|
- this.firstPlace['checkedType'] = this.ruleTermCodeStr;
|
|
|
+ this.firstPlace['checkedType'] = this.ruleTermCodeStrs;
|
|
|
}
|
|
|
} else if (!val) {
|
|
|
this.setInitGroupData();
|
|
@@ -753,7 +753,7 @@ export default {
|
|
|
return false;
|
|
|
},
|
|
|
checkFirstPlace: function() {
|
|
|
- return this.dict.indexOf(this.ruleTermCodeStr) > -1;
|
|
|
+ return this.dict.indexOf(this.ruleTermCodeStrs) > -1;
|
|
|
}
|
|
|
},
|
|
|
components: { AddNewRuleTable }
|