将行业热门话题洞察的需要修改成columns
This commit is contained in:
@ -12,7 +12,7 @@
|
||||
</template>
|
||||
</a-button>
|
||||
<template #content>
|
||||
<p>基于xxx获取数据xxx,一段文字描述该数据的获取方式和来源等xxx</p>
|
||||
<p style="margin: 0">基于该行业中近期提及频次高、用户互动活跃的品牌内容,筛选出关注度较高的代表性品牌。</p>
|
||||
</template>
|
||||
</a-popover>
|
||||
</a-space>
|
||||
@ -70,7 +70,9 @@
|
||||
</template>
|
||||
</a-button>
|
||||
<template #content>
|
||||
<p>基于xxx获取数据xxx,一段文字描述该数据的获取方式和来源等xxx</p>
|
||||
<p style="margin: 0">
|
||||
基于情绪分析与敏感词识别,对行业内容中的负面或争议性话题进行监测,辅助判断舆情风险动态。
|
||||
</p>
|
||||
</template>
|
||||
</a-popover>
|
||||
</a-space>
|
||||
@ -116,6 +118,12 @@ const getFocusBrandsList = async () => {
|
||||
industry_id: selectedIndustry.value,
|
||||
time_dimension: selectedTimePeriod.value,
|
||||
};
|
||||
if (selectedIndustry.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value != 0) {
|
||||
params['industry_id'] = selectedSubCategory.value;
|
||||
}
|
||||
@ -129,6 +137,12 @@ const getEventDynamicsList = async () => {
|
||||
industry_id: selectedIndustry.value,
|
||||
time_dimension: selectedTimePeriod.value,
|
||||
};
|
||||
if (selectedIndustry.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value != 0) {
|
||||
params['industry_id'] = selectedSubCategory.value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user