|
@@ -185,12 +185,19 @@ export default {
|
|
|
|
|
|
// 获取研究员列表
|
|
|
getResearcherList() {
|
|
|
- roadshowInterence.getResearcherList().then(res=> {
|
|
|
- if (res.Ret !== 200) return
|
|
|
-
|
|
|
- this.researcherList = this.formatResearcherList(res.Data);
|
|
|
-
|
|
|
- });
|
|
|
+ roadshowInterence.getResearcherList().then(res=> {
|
|
|
+ if (res.Ret !== 200) return
|
|
|
+ //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
|
|
|
+ }]
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
// 对获取到的研究员列表做处理
|