|
@@ -268,7 +268,11 @@ export default {
|
|
|
api.retrievalSearch(params).then(res => {
|
|
|
this.showDrop = false;
|
|
|
if (res.data.code === '0') {
|
|
|
- this.uniqueNameList = res.data.data.nameList;
|
|
|
+ if (this.ty == 2) {
|
|
|
+ this.uniqueNameList = res.data.data.lisDetailNames;
|
|
|
+ } else {
|
|
|
+ this.uniqueNameList = res.data.data.nameList;
|
|
|
+ }
|
|
|
}
|
|
|
});
|
|
|
},
|