|
@@ -170,17 +170,18 @@ export default {
|
|
|
this.$router.go(-1);
|
|
|
},
|
|
|
searchDiag() {
|
|
|
- const param = {
|
|
|
- "name": this.searchDiagVal,
|
|
|
- "relationId": 17,
|
|
|
- "relationPosition": 1,
|
|
|
- "typeId":this.conceptType
|
|
|
- }
|
|
|
- api.getConceptInfoAssay(param).then((res)=>{
|
|
|
- if(res.data.code === '0') {
|
|
|
- this.conceptList = res.data.data
|
|
|
- }
|
|
|
- })
|
|
|
+ const param = {
|
|
|
+ "name": this.searchDiagVal,
|
|
|
+ "relationId": 17,
|
|
|
+ "relationPosition": 1,
|
|
|
+ "typeId":this.conceptType,
|
|
|
+ "relationTypeId":this.searchType //9-19新增
|
|
|
+ }
|
|
|
+ api.getConceptInfoAssay(param).then((res)=>{
|
|
|
+ if(res.data.code === '0') {
|
|
|
+ this.conceptList = res.data.data
|
|
|
+ }
|
|
|
+ })
|
|
|
},
|
|
|
selectDiag(item) {
|
|
|
this.form.conceptId = item.conceptId;
|