Files
lingji-work-fe/src/views/components/dataEngine/topHeader.vue

200 lines
6.0 KiB
Vue
Raw Normal View History

2025-06-16 14:42:26 +08:00
<template>
<view>
<!-- 头部 -->
<a-space
direction="vertical"
2025-07-07 10:42:38 +08:00
class="bg-#fff rounded-8px border-1px border-#D7D7D9 border-solid mb-20px"
style="background-color: #fff; width: 100%; padding: 24px; color: #737478; font-size: 14px"
2025-06-16 14:42:26 +08:00
>
2025-06-30 18:37:27 +08:00
<a-space align="start" style="width: 100%; align-items: flex-start" class="mb-12px">
<span style="flex-shrink: 0; line-height: 28px" class="mr-32px">行业大类</span>
<div style="display: flex; flex-wrap: wrap; gap: 16px; width: 100%; align-items: flex-start">
2025-06-16 14:42:26 +08:00
<a-tag
v-for="item in industriesTree"
:key="item.id"
2025-06-30 18:37:27 +08:00
size="Medium"
2025-06-16 14:42:26 +08:00
:checkable="true"
:checked="selectedIndustry == item.id"
2025-06-30 18:37:27 +08:00
style="padding: 10px 16px; border-radius: 30px; height: 28px"
2025-06-16 14:42:26 +08:00
:style="
selectedIndustry == item.id
2025-06-30 18:37:27 +08:00
? 'color: #6D4CFE; background-color: #F0EDFF'
2025-06-16 14:42:26 +08:00
: 'color: #3C4043; background-color: #F7F8FA'
"
2025-06-30 18:37:27 +08:00
@check="handleIndustryCheck(item.id)"
2025-06-16 14:42:26 +08:00
>{{ item.name }}</a-tag
>
2025-06-21 11:39:35 +08:00
</div>
2025-06-16 14:42:26 +08:00
</a-space>
2025-06-21 11:39:35 +08:00
<!-- 二级类目 -->
2025-06-30 18:37:27 +08:00
<a-space align="start" style="width: 100%; align-items: flex-start" class="mb-12px">
<span style="flex-shrink: 0; line-height: 28px" class="mr-32px">二级类目</span>
<div style="display: flex; flex-wrap: wrap; gap: 16px; width: 100%; align-items: flex-start">
2025-06-16 14:42:26 +08:00
<a-tag
v-for="item in subCategories"
2025-06-17 11:18:39 +08:00
:key="item.id"
2025-06-30 18:37:27 +08:00
size="Medium"
2025-06-16 14:42:26 +08:00
:checkable="true"
2025-06-17 11:18:39 +08:00
:checked="selectedSubCategory == item.id"
2025-06-30 18:37:27 +08:00
style="padding: 10px 16px; border-radius: 30px; height: 28px"
2025-06-16 14:42:26 +08:00
:style="
2025-06-17 11:18:39 +08:00
selectedSubCategory == item.id
2025-06-16 14:42:26 +08:00
? 'color: #6d4cfe; background-color: #f0edff'
: 'color: #3C4043; background-color: #F7F8FA'
"
2025-06-30 18:37:27 +08:00
@check="handleSubCategoryCheck(item.id)"
2025-06-17 11:18:39 +08:00
>{{ item.name }}</a-tag
2025-06-16 14:42:26 +08:00
>
2025-06-21 11:39:35 +08:00
</div>
2025-06-16 14:42:26 +08:00
</a-space>
2025-06-21 11:39:35 +08:00
<!-- </a-space> -->
2025-06-30 18:37:27 +08:00
<a-space align="start" style="width: 100%; align-items: flex-start" class="mb-12px">
<span style="flex-shrink: 0; line-height: 28px" class="mr-32px">时间筛选</span>
<div style="display: flex; flex-wrap: wrap; gap: 16px; width: 100%; align-items: flex-start">
2025-06-16 14:42:26 +08:00
<a-tag
v-for="item in timePeriods"
:key="item.value"
2025-06-30 18:37:27 +08:00
size="Medium"
2025-06-16 14:42:26 +08:00
:checkable="true"
:checked="selectedTimePeriod == item.value"
2025-06-30 18:37:27 +08:00
style="padding: 10px 16px; border-radius: 30px; height: 28px"
2025-06-16 14:42:26 +08:00
:style="
selectedTimePeriod == item.value
? 'color: #6d4cfe; background-color: #f0edff'
: 'color: #3C4043; background-color: #F7F8FA'
"
2025-06-30 18:37:27 +08:00
@check="handleTimePeriodCheck(item.value)"
2025-06-16 14:42:26 +08:00
>{{ item.label }}
</a-tag>
2025-06-21 11:39:35 +08:00
</div>
2025-06-16 14:42:26 +08:00
</a-space>
<!-- 搜索区域 -->
2025-06-30 18:37:27 +08:00
<a-space style="margin-left: 'auto'">
<a-button type="primary" size="medium" @click="handleSearch">
2025-06-16 14:42:26 +08:00
<template #icon>
<icon-search />
</template>
<!-- Use the default slot to avoid extra spaces -->
<template #default>搜索</template>
</a-button>
2025-06-30 18:37:27 +08:00
<a-button class="w-84px reset-btn" size="medium" @click="handleReset">
<template #icon>
<icon-refresh />
</template>
<template #default>重置</template>
</a-button>
2025-06-16 14:42:26 +08:00
</a-space>
</a-space>
</view>
</template>
2025-06-17 11:18:39 +08:00
<script setup lang="ts">
2025-06-16 14:42:26 +08:00
import { ref, computed } from 'vue';
2025-06-17 11:18:39 +08:00
import { fetchIndustriesTree } from '@/api/all/index';
2025-06-30 18:37:27 +08:00
const emit = defineEmits<(e: 'search') => void>();
2025-06-16 14:42:26 +08:00
// 行业大类
const industriesTree = ref([]);
// 数据状态
const selectedIndustry = ref();
2025-06-17 11:18:39 +08:00
const selectedSubCategory = ref(0);
2025-06-16 14:42:26 +08:00
const selectedTimePeriod = ref('7');
// 暴露这些状态给父组件
defineExpose({
selectedIndustry,
selectedSubCategory,
selectedTimePeriod,
});
// 二级类目选项
2025-06-17 11:18:39 +08:00
const subCategories = ref([]);
2025-06-16 14:42:26 +08:00
// 时间周期选项
const timePeriods = [
{
value: '7',
label: '近7天',
},
{
value: '15',
label: '近15天',
},
{
value: '30',
label: '近30天',
},
];
2025-06-17 11:18:39 +08:00
const handleIndustryCheck = (id) => {
selectedIndustry.value = id;
console.log(industriesTree.value);
for (let i = 0; i < industriesTree.value.length; i++) {
if (industriesTree.value[i].id == id) {
subCategories.value = [];
subCategories.value = [...industriesTree.value[i].children];
subCategories.value.unshift({ id: 0, name: '全部' });
selectedSubCategory.value = 0;
break;
}
}
2025-06-16 14:42:26 +08:00
};
2025-06-17 11:18:39 +08:00
const handleSubCategoryCheck = (id) => {
selectedSubCategory.value = id;
2025-06-16 14:42:26 +08:00
};
const handleTimePeriodCheck = (value) => {
selectedTimePeriod.value = value;
};
2025-06-17 11:18:39 +08:00
onMounted(() => {
getIndustriesTree();
});
// 获取行业大类数据
const getIndustriesTree = async () => {
const res = await fetchIndustriesTree();
if (res.code == 200) {
let data = res['data'];
industriesTree.value = data;
selectedIndustry.value = data[0].id;
selectedSubCategory.value = 0;
subCategories.value = [...industriesTree.value[0].children];
subCategories.value.unshift({ id: 0, name: '全部' });
}
2025-06-16 14:42:26 +08:00
};
// 搜索
const handleSearch = () => {
2025-06-17 11:18:39 +08:00
emit('search');
2025-06-16 14:42:26 +08:00
};
2025-06-17 11:18:39 +08:00
const handleReset = () => {
selectedIndustry.value = industriesTree.value[0].id;
selectedSubCategory.value = 0;
selectedTimePeriod.value = '7';
2025-06-16 14:42:26 +08:00
};
</script>
2025-06-30 18:37:27 +08:00
<style scoped lang="scss">
2025-06-16 14:42:26 +08:00
/* 自定义样式 */
:deep(.arco-table-th) {
background-color: var(--color-fill-2);
}
:deep(.arco-table-tr):hover {
background-color: var(--color-fill-1);
}
:deep(.arco-btn-outline) {
color: #6d4cfe !important;
border-color: #6d4cfe !important;
}
:deep(.arco-modal-body) {
padding: 0px;
}
2025-06-30 18:37:27 +08:00
.reset-btn {
border-radius: 4px;
border: 1px solid var(--BG-500, #b1b2b5);
background: var(--BG-white, #fff);
&:hover {
border: 1px solid var(--BG-500, #b1b2b5);
}
}
2025-06-16 14:42:26 +08:00
</style>