|
@@ -149,7 +149,16 @@ export default {
|
|
const res = await roadshowInterence.getResearcherList();
|
|
const res = await roadshowInterence.getResearcherList();
|
|
if (res.Ret === 200) {
|
|
if (res.Ret === 200) {
|
|
// this.researcherList=res.Data
|
|
// this.researcherList=res.Data
|
|
- this.researcherList = this.formatResearcherList(res.Data);
|
|
|
|
|
|
+ //this.researcherList = this.formatResearcherList(res.Data);
|
|
|
|
+ const ficcList = this.formatResearcherList(res.Data.find(i=>i.GroupName==='ficc').ResearcherList||[]);
|
|
|
|
+ const raiList = this.formatResearcherList(res.Data.find(i=>i.GroupName==='权益').ResearcherList||[]);
|
|
|
|
+ this.researcherList = [{
|
|
|
|
+ label:'ficc',
|
|
|
|
+ ResearcherList:ficcList
|
|
|
|
+ },{
|
|
|
|
+ label:'权益',
|
|
|
|
+ ResearcherList:raiList
|
|
|
|
+ }]
|
|
}
|
|
}
|
|
},
|
|
},
|
|
// 对获取到的研究员列表做处理
|
|
// 对获取到的研究员列表做处理
|