From 44428e54ce4b2d82416a76c4cd4dbd8853caa681 Mon Sep 17 00:00:00 2001 From: zhuangyuanke Date: Mon, 22 Jul 2024 14:16:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BC=80=E5=85=B3=E6=8C=89=E9=92=AE=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E7=BE=8E=E5=8C=96=E8=B0=83=E6=95=B4=EF=BC=8C=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E5=BC=80=E5=85=B3=E5=8F=98=E9=87=8F=E8=AE=BE=E7=BD=AE?= =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/system/followup/index.vue | 76 ++++++++++++++++++++++++----- 1 file changed, 65 insertions(+), 11 deletions(-) diff --git a/src/views/system/followup/index.vue b/src/views/system/followup/index.vue index c99b63f..a9bcb64 100644 --- a/src/views/system/followup/index.vue +++ b/src/views/system/followup/index.vue @@ -197,9 +197,12 @@ v-if="queryParams.nodeExecuteStatus == 'UNEXECUTED'" > @@ -509,7 +512,7 @@ export default { // 是否显示弹出层 open: false, // 查询参数 - timeSignshow: true, + timeSignshow: false, queryParams: { pageNum: 1, pageSize: 10, @@ -582,11 +585,11 @@ export default { methods: { changeswitch(e) { if (e == true) { - this.queryParams.timeSign = 'TODAY' + this.queryParams.timeSign = 'WHOLE' this.getList() } else { - this.queryParams.timeSign = 'WHOLE' + this.queryParams.timeSign = 'TODAY' this.getList() } }, @@ -867,7 +870,7 @@ export default { departmentId: null, wardId: null, } - this.timeSignshow = true + this.timeSignshow = false } else { this.queryParams = { pageNum: 1, @@ -1044,11 +1047,62 @@ export default { };