@@ -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