|
@@ -197,7 +197,7 @@
|
|
|
v-for="item in ruleTermTypeList"
|
|
|
:key="item.conceptId"
|
|
|
:label="item.conceptName"
|
|
|
- :value="item"
|
|
|
+ :value="item.conceptName"
|
|
|
></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
@@ -405,9 +405,13 @@ export default {
|
|
|
this.getList(arr);
|
|
|
},
|
|
|
getCollectionLib(newValue) {
|
|
|
- this.form.collectionLibName = newValue.conceptName;
|
|
|
- this.form.collectionId = newValue.conceptId;
|
|
|
- this.form.collectionRemark = newValue.remark;
|
|
|
+ this.ruleTermTypeList.forEach(item => {
|
|
|
+ if (newValue == item.conceptName) {
|
|
|
+ // this.form.collectionLibName = item.conceptName;
|
|
|
+ this.form.collectionId = item.conceptId;
|
|
|
+ this.form.collectionRemark = item.remark;
|
|
|
+ }
|
|
|
+ });
|
|
|
},
|
|
|
// 基础术语
|
|
|
async searchConcept() {
|