From d8191f03a06a36962a0f585f75ada3d7b4209aeb Mon Sep 17 00:00:00 2001 From: luo Date: Fri, 21 Aug 2026 16:56:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B5=84=E4=BA=A7=E4=BF=A1=E6=81=AFui?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 3 +- src/utils/auth/loginValidation.ts | 4 +- .../components/BasicInfoCard.vue | 604 +++++++++++++++--- .../components/CurrentPackageCard.vue | 136 +++- .../components/PackageListCard.vue | 2 +- .../components/WalletTransactionCard.vue | 2 +- .../components/dialogs/DailyRecordsDialog.vue | 6 +- src/views/common/account-list.vue | 2 +- .../package-management/package-list/index.vue | 2 +- .../series-grants/index.vue | 8 +- .../series-grants/packages.vue | 2 +- .../alert-history/index.vue | 4 +- .../polling-management/alert-rules/index.vue | 10 +- src/views/polling-management/config/index.vue | 2 +- .../settings/withdrawal-settings/index.vue | 5 +- src/views/system/carrier-management/index.vue | 4 +- 16 files changed, 661 insertions(+), 135 deletions(-) diff --git a/src/App.vue b/src/App.vue index d9275f9..d9a3bc4 100644 --- a/src/App.vue +++ b/src/App.vue @@ -76,7 +76,7 @@ } const getEntrySignature = (html: string) => { - const matches = html.match(/(?:src|href)="[^"]*\/assets\/[^""]+\.(?:js|css)"/g) + const matches = html.match(/(?:src|href)="[^"]*\/assets\/[^"]+\.(?:js|css)"/g) return matches?.sort().join('|') || '' } @@ -106,7 +106,6 @@ [ navigator.userAgent, navigator.language, - navigator.platform, Intl.DateTimeFormat().resolvedOptions().timeZone, `${screen.width}x${screen.height}x${screen.colorDepth}` ].join('|') diff --git a/src/utils/auth/loginValidation.ts b/src/utils/auth/loginValidation.ts index 196a595..2cb529d 100644 --- a/src/utils/auth/loginValidation.ts +++ b/src/utils/auth/loginValidation.ts @@ -59,7 +59,7 @@ export const strongPasswordRules = (t: (key: string) => string): FormItemRule[] trigger: 'blur' }, { - validator: (rule: any, value: any, callback: any) => { + validator: (_rule: any, value: any, callback: any) => { if (!value) { callback() return @@ -93,7 +93,7 @@ export const confirmPasswordRules = ( trigger: 'blur' }, { - validator: (rule: any, value: any, callback: any) => { + validator: (_rule: any, value: any, callback: any) => { if (!value) { callback() return diff --git a/src/views/asset-management/asset-information/components/BasicInfoCard.vue b/src/views/asset-management/asset-information/components/BasicInfoCard.vue index 8751a6e..a008aa1 100644 --- a/src/views/asset-management/asset-information/components/BasicInfoCard.vue +++ b/src/views/asset-management/asset-information/components/BasicInfoCard.vue @@ -40,68 +40,140 @@ - +