|
@@ -124,7 +124,7 @@ export default {
|
|
styles:{
|
|
styles:{
|
|
background:'#eae7e7'
|
|
background:'#eae7e7'
|
|
},
|
|
},
|
|
- type:'',
|
|
|
|
|
|
+ type:null,
|
|
typeList:[],
|
|
typeList:[],
|
|
nodeList:[],
|
|
nodeList:[],
|
|
saveDisable: false //保存按钮禁止点击
|
|
saveDisable: false //保存按钮禁止点击
|
|
@@ -187,8 +187,17 @@ export default {
|
|
},
|
|
},
|
|
getTagList(flag) {
|
|
getTagList(flag) {
|
|
const notIds = this.selectedTags();
|
|
const notIds = this.selectedTags();
|
|
- let param;
|
|
|
|
- if(flag){
|
|
|
|
|
|
+ //2019-8-15 需求修改:搜索结果与类型关联bug2045
|
|
|
|
+ let param = {
|
|
|
|
+ "name": this.searchTagVal,
|
|
|
|
+ "relationId": 17,
|
|
|
|
+ "relationPosition": 2,
|
|
|
|
+ "typeId": this.type, //选中类型的id
|
|
|
|
+ "relationConceptId":this.form.conceptId,
|
|
|
|
+ "excludedConceptIds":notIds
|
|
|
|
+ }
|
|
|
|
+ // let param;
|
|
|
|
+ /*if(flag){
|
|
param = {
|
|
param = {
|
|
"name": this.searchTagVal,
|
|
"name": this.searchTagVal,
|
|
"relationId": 17,
|
|
"relationId": 17,
|
|
@@ -205,7 +214,7 @@ export default {
|
|
"relationConceptId":this.form.conceptId,
|
|
"relationConceptId":this.form.conceptId,
|
|
"excludedConceptIds":notIds
|
|
"excludedConceptIds":notIds
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ }*/
|
|
api.getConceptInfoAssay(param).then((res)=>{
|
|
api.getConceptInfoAssay(param).then((res)=>{
|
|
if(res.data.code === '0') {
|
|
if(res.data.code === '0') {
|
|
this.leftTagsList = res.data.data
|
|
this.leftTagsList = res.data.data
|