{{ 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/BatchVerify.vue b/src/views/Jyh/Search/Components/BatchVerify.vue
index 5c28493..fa6e41f 100644
--- a/src/views/Jyh/Search/Components/BatchVerify.vue
+++ b/src/views/Jyh/Search/Components/BatchVerify.vue
@@ -179,7 +179,7 @@ const handleBatchImport = async() => { // 多个项目导入
const gotoDetail = (row) => {
// 后续请换成params,暂时params传参没传过去
router.push({
- path: 'repoDetail/basicInfo/' + row.version
+ path: 'repoDetail/' + row.version
});
};
// 分页
diff --git a/src/views/Jyh/Search/Components/OssQuery.vue b/src/views/Jyh/Search/Components/OssQuery.vue
index 2103080..697d005 100644
--- a/src/views/Jyh/Search/Components/OssQuery.vue
+++ b/src/views/Jyh/Search/Components/OssQuery.vue
@@ -3,10 +3,10 @@
-
+
@@ -54,7 +54,7 @@