diff --git a/src/assets/fonts/Alibaba-PuHuiTi-Bold.otf b/src/assets/fonts/Alibaba-PuHuiTi-Bold.otf new file mode 100644 index 0000000..2ed2026 Binary files /dev/null and b/src/assets/fonts/Alibaba-PuHuiTi-Bold.otf differ diff --git a/src/assets/fonts/Alibaba-PuHuiTi-Medium.otf b/src/assets/fonts/Alibaba-PuHuiTi-Medium.otf new file mode 100644 index 0000000..a308250 Binary files /dev/null and b/src/assets/fonts/Alibaba-PuHuiTi-Medium.otf differ diff --git a/src/assets/fonts/Alibaba-PuHuiTi-Regular.otf b/src/assets/fonts/Alibaba-PuHuiTi-Regular.otf new file mode 100644 index 0000000..5960ba1 Binary files /dev/null and b/src/assets/fonts/Alibaba-PuHuiTi-Regular.otf differ diff --git a/src/components/container.vue b/src/components/container.vue index e63e4e9..14d2f20 100644 --- a/src/components/container.vue +++ b/src/components/container.vue @@ -23,7 +23,7 @@ const props = defineProps<{ border-radius: 8px; } .title { - font-family: Alibaba PuHuiTi, serif; + font-family: 'PuHuiTi-Medium'; font-weight: 400; font-size: 18px; line-height: 24px; diff --git a/src/components/delete-modal.vue b/src/components/delete-modal.vue index e8cddd8..0d3664d 100644 --- a/src/components/delete-modal.vue +++ b/src/components/delete-modal.vue @@ -7,8 +7,7 @@ - + diff --git a/src/views/components/dataEngine/keyWord.vue b/src/views/components/dataEngine/keyWord.vue index 5e69005..4b16d47 100644 --- a/src/views/components/dataEngine/keyWord.vue +++ b/src/views/components/dataEngine/keyWord.vue @@ -3,12 +3,15 @@ - +
关键词热度榜 - +
@@ -25,7 +28,7 @@ 热度指数 - +
@@ -34,7 +37,7 @@ 变化幅度 - +
@@ -66,73 +69,68 @@ - +
行业情绪 - +
- - - -
- - - - 正面情绪 - {{ getFormatter(fellingRate[0] * 100) }} - - - - 负面情绪 - {{ getFormatter(fellingRate[1] * 100) }} - - -
- - - -
-
+
+
+
+
+
+
+ 正面情绪 {{ getFormatter(fellingRate[0] * 100) }} + +
+
+
+ 负面情绪 + {{ getFormatter(fellingRate[1] * 100) }} +
+
+
+ + + +
- +
新兴关键词 - +
@@ -168,7 +166,7 @@ /> @@ -144,6 +130,23 @@ const selectedIndustry = computed(() => topHeaderRef.value?.selectedIndustry); const selectedSubCategory = computed(() => topHeaderRef.value?.selectedSubCategory); const selectedTimePeriod = computed(() => topHeaderRef.value?.selectedTimePeriod); const dataList = ref([]); +const frequencyStatus = { + 0: { + label: '低频', + color: '#1bae71', + bgColor: '#ebf7f2', + }, + 1: { + label: '中频', + color: '#cc8b00', + bgColor: '#fff5de', + }, + 2: { + label: '高频', + color: '#c53c27', + bgColor: '#ffe7e4', + }, +}; const columns = [ { title: '排名', @@ -239,7 +242,7 @@ const search = () => { }; - + diff --git a/src/views/components/dataEngine/userPersona.vue b/src/views/components/dataEngine/userPersona.vue index 9b5cdf3..3d6be28 100644 --- a/src/views/components/dataEngine/userPersona.vue +++ b/src/views/components/dataEngine/userPersona.vue @@ -1,57 +1,47 @@