diff --git a/src/views/manage/index.vue b/src/views/manage/index.vue index 7ebe880..5dcc14d 100644 --- a/src/views/manage/index.vue +++ b/src/views/manage/index.vue @@ -702,6 +702,15 @@ export default { this.queryParams.current = 1; this.getList(); }, + /** 详情按钮操作 */ + getInfo(row, type) { + this.$store.commit("SET_CRUMBS", "项目详情"); + const id = row.id || this.ids[0]; + this.$router.push({ + path: `/manage-info/${id}`, + query: { action: type }, + }); + }, }, };