|
@@ -272,7 +272,7 @@ export default {
|
|
|
},
|
|
|
created() {},
|
|
|
mounted() {
|
|
|
- this.chartPermission();
|
|
|
+ !this.isResearch && this.chartPermission();
|
|
|
this.getsDataList();
|
|
|
},
|
|
|
methods: {
|
|
@@ -283,7 +283,7 @@ export default {
|
|
|
},
|
|
|
//获取行业
|
|
|
chartPermission() {
|
|
|
- raiInterface.chartPermission().then((res) => {
|
|
|
+ raiInterface.chartPermission({IsHideResearch:!this.isResearch}).then((res) => {
|
|
|
if (res.Ret === 200) {
|
|
|
this.chartPermissionList = res.Data.List;
|
|
|
}
|
|
@@ -320,6 +320,7 @@ export default {
|
|
|
ChartPermissionId: this.industry,
|
|
|
ActivityTypeId: this.cactivityTypeVal,
|
|
|
MeetType: this.meetingTab,
|
|
|
+ IsResearch:this.isResearch
|
|
|
})
|
|
|
.then((res) => {
|
|
|
if (res.Ret !== 200) return;
|