将行业热门话题洞察的需要修改成columns
This commit is contained in:
@ -173,6 +173,12 @@ const getAgeDistributionsList = async () => {
|
||||
industry_id: selectedIndustry.value,
|
||||
time_dimension: selectedTimePeriod.value,
|
||||
};
|
||||
if (selectedIndustry.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value != 0) {
|
||||
parms['industry_id'] = selectedSubCategory.value;
|
||||
}
|
||||
@ -189,6 +195,12 @@ const getGeoDistributionsList = async () => {
|
||||
industry_id: selectedIndustry.value,
|
||||
time_dimension: selectedTimePeriod.value,
|
||||
};
|
||||
if (selectedIndustry.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value != 0) {
|
||||
parms['industry_id'] = selectedSubCategory.value;
|
||||
}
|
||||
@ -202,6 +214,12 @@ const getGenderDistributionsList = async () => {
|
||||
industry_id: selectedIndustry.value,
|
||||
time_dimension: selectedTimePeriod.value,
|
||||
};
|
||||
if (selectedIndustry.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value == undefined) {
|
||||
return;
|
||||
}
|
||||
if (selectedSubCategory.value != 0) {
|
||||
parms['industry_id'] = selectedSubCategory.value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user