{{ item.time }}
@@ -175,8 +175,14 @@ const checkMore = () => {
router.push({ name: 'PersonalCenter' });
}
-const openWarningDetail = (event) => {
- console.log(event)
+const openWarningDetail = (event, index) => {
+ infoList.value.forEach((item, i) => {
+ if (i <= index) {
+ item.dotColor = 'var(--devui-info)';
+ } else {
+ item.dotColor = '';
+ }
+ })
}
let resizeObserver: ResizeObserver | null = null;
diff --git a/src/views/Jyh/Search/Components/OssQuery.vue b/src/views/Jyh/Search/Components/OssQuery.vue
index 2103080..837591a 100644
--- a/src/views/Jyh/Search/Components/OssQuery.vue
+++ b/src/views/Jyh/Search/Components/OssQuery.vue
@@ -3,10 +3,10 @@