diff --git a/src/views/regulatoryPlatForm/index.vue b/src/views/regulatoryPlatForm/index.vue index f42585b..9ac7d2b 100644 --- a/src/views/regulatoryPlatForm/index.vue +++ b/src/views/regulatoryPlatForm/index.vue @@ -11,7 +11,7 @@
-
+
@@ -20,7 +20,7 @@
{{ cardData.myTodo }}
-
+
@@ -29,7 +29,7 @@
{{ cardData.abnormal }}
-
+
@@ -38,7 +38,7 @@
{{ cardData.illegal }}
-
+
@@ -47,7 +47,7 @@
{{ cardData.creditRepair }}
-
+
@@ -312,6 +312,13 @@ export default { data: pieData }] }) + }, + // 跳转到我的待办对应 tab + goToTodoList(activeName) { + this.$router.push({ + path: '/toDoList', + query: { activeName, activeNamet: Date.now() } + }) } } } @@ -397,6 +404,12 @@ export default { align-items: center; justify-content: center; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); + cursor: pointer; + transition: transform 0.2s, box-shadow 0.2s; + &:hover { + transform: translateY(-2px); + box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); + } .icon{ background: #EBF5FF; border-radius: 65px; diff --git a/src/views/regulatoryPlatForm/toDoList.vue b/src/views/regulatoryPlatForm/toDoList.vue index aa4df5a..c722a63 100644 --- a/src/views/regulatoryPlatForm/toDoList.vue +++ b/src/views/regulatoryPlatForm/toDoList.vue @@ -22,7 +22,7 @@ export default { if (this.$route.query.activeName === 'fraudCheck') { this.url = '/aiccs/#/cancel/fraudCheckList' } else { - this.url = '/aiccs/#/todo/list' + '?activeName=' + this.activeName + '&bustype=' + this.bustype + this.url = '/aiccs/#/todo/list' + '?activeName=' + this.activeName + '&bustype=' + this.bustype + '&activeNamet=' + (this.$route.query.activeNamet || '') } } this.src = this.url