From 5c8d83c9609e5b86ab638f2cdc8584348eefbf2a Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Sat, 7 Dec 2024 23:57:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=8C=85=E5=8F=B0=E9=A2=84=E7=BA=A6?= =?UTF-8?q?=EF=BC=8C=E8=87=AA=E6=B5=8B=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/invest/ilog/index.vue | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/views/invest/ilog/index.vue b/src/views/invest/ilog/index.vue index 62ef840..90dd6b2 100644 --- a/src/views/invest/ilog/index.vue +++ b/src/views/invest/ilog/index.vue @@ -6,6 +6,9 @@ + + + @@ -50,15 +53,15 @@ - + @@ -99,7 +102,11 @@ const single = ref(true) const multiple = ref(true) const total = ref(0) const title = ref('') -const operateList = ref([{ id: 'view', icon: 'View', title: '查看', hasPermi: ['invest:ilog:query'] }]) +const operateList = ref([ + // { id: 'view', icon: 'View', title: '查看', hasPermi: ['invest:ilog:query'] }, + // { id: 'edit', icon: 'Edit', title: '修改', hasPermi: ['invest:heartJourney:edit'] }, + { id: 'delete', icon: 'Delete', title: '删除', hasPermi: ['invest:heartJourney:remove'] } +]) const data = reactive({ form: {}, queryParams: { @@ -169,7 +176,8 @@ function handleQuery() { /** 重置按钮操作 */ function resetQuery() { - proxy.resetForm('queryRef') + queryParams.value.mobile = null + queryParams.value.status = null handleQuery() }