From a2b2d1bf5d1dc18b4c71d6f07577c6d0e4f8a6c4 Mon Sep 17 00:00:00 2001 From: chenze <1824191732@qq.com> Date: Mon, 2 Sep 2024 17:55:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=B9=E5=BA=94bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/admin/RepairList.vue | 6 ++++-- src/views/admin/repair/PerformanceList.vue | 13 ++++++++++++- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/src/views/admin/RepairList.vue b/src/views/admin/RepairList.vue index 2c05bd7..5901af1 100644 --- a/src/views/admin/RepairList.vue +++ b/src/views/admin/RepairList.vue @@ -119,8 +119,10 @@ 详情 - - 删除 + + + + diff --git a/src/views/admin/repair/PerformanceList.vue b/src/views/admin/repair/PerformanceList.vue index 50c94ae..7718f72 100644 --- a/src/views/admin/repair/PerformanceList.vue +++ b/src/views/admin/repair/PerformanceList.vue @@ -330,9 +330,20 @@ export default { // this.floorCreateList(this.queryParam) }, // 切换时间 - selectTime(value, dateString) { + selectTime (value, dateString) { this.queryParam.startDate = dateString[0] this.queryParam.endDate = dateString[1] + }, + + handleView (workerId) { + this.$router.push({ name: 'repair', query: { repairUserId: workerId } }) + }, + handleFloorView (floorId) { + console.log(floorId) + this.$router.push({ name: 'repair', query: { floorId: floorId } }) + }, + handleFloorCreateView (floorId) { + this.$router.push({ name: 'repair', query: { floorCreateId: floorId } }) } }, watch: {}