From eaeafec5c9e3b57cd0fd86b30149c0b997eb7544 Mon Sep 17 00:00:00 2001
From: hongxilin <17663930442@163.com>
Date: Fri, 2 Jan 2026 17:44:24 +0800
Subject: [PATCH] =?UTF-8?q?=E8=A7=84=E5=AE=9A=E6=B3=A8=E5=86=8C=E6=97=B6?=
=?UTF-8?q?=E9=97=B4=E6=A0=BC=E5=BC=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/UserPermissions/invitedLook.vue | 38 +++++++++++++++----------------
1 file changed, 19 insertions(+), 19 deletions(-)
diff --git a/src/views/UserPermissions/invitedLook.vue b/src/views/UserPermissions/invitedLook.vue
index 64cf940..7f1113a 100644
--- a/src/views/UserPermissions/invitedLook.vue
+++ b/src/views/UserPermissions/invitedLook.vue
@@ -55,7 +55,7 @@
@@ -135,33 +135,33 @@ onMounted(async () => {
const shortcuts = [
{
- text: '最近7天',
+ text: "最近7天",
value: () => {
- const end = new Date()
- const start = new Date()
- start.setDate(start.getDate() - 7)
- return [start, end]
+ const end = new Date();
+ const start = new Date();
+ start.setDate(start.getDate() - 7);
+ return [start, end];
},
},
{
- text: '最近1个月',
+ text: "最近1个月",
value: () => {
- const end = new Date()
- const start = new Date()
- start.setMonth(start.getMonth() - 1)
- return [start, end]
+ const end = new Date();
+ const start = new Date();
+ start.setMonth(start.getMonth() - 1);
+ return [start, end];
},
},
{
- text: '最近3个月',
+ text: "最近3个月",
value: () => {
- const end = new Date()
- const start = new Date()
- start.setMonth(start.getMonth() - 3)
- return [start, end]
+ const end = new Date();
+ const start = new Date();
+ start.setMonth(start.getMonth() - 3);
+ return [start, end];
},
},
-]
+];
// 地区下拉框
const regionList = ref([]);
@@ -291,8 +291,8 @@ const resetBn = () => {
searchForm.origin_id = "";
searchForm.user_role = "";
searchForm.country = "";
- searchDate.value=[];
-
+ searchDate.value = [];
+
currentPage.value = 1;
pageSizeDM.value = 10;
getTableData();