From 2706807abdde7a18b384bd442bfd5f7af359ab9f Mon Sep 17 00:00:00 2001 From: Seven Date: Thu, 8 Jan 2026 19:14:53 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=9B=B4=E6=96=B0=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=E8=83=8C=E6=99=AF=E8=89=B2=EF=BC=8C=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=E5=8F=98=E9=87=8F=E6=9B=BF=E4=BB=A3=E7=A1=AC=E7=BC=96?= =?UTF-8?q?=E7=A0=81=E9=A2=9C=E8=89=B2=EF=BC=8C=E6=8F=90=E5=8D=87=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E4=B8=80=E8=87=B4=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/theme/variables.css | 2 +- src/views/notify/detail.vue | 2 +- src/views/notify/index.vue | 2 +- src/views/riwa/index.vue | 17 ----------------- tailwind.config.ts | 1 + 5 files changed, 4 insertions(+), 20 deletions(-) diff --git a/src/theme/variables.css b/src/theme/variables.css index 449b94f..ce9b3ee 100644 --- a/src/theme/variables.css +++ b/src/theme/variables.css @@ -88,7 +88,7 @@ html.ion-palette-light { --ion-text-color-step-800: #cccccc; --ion-text-color-step-850: #d9d9d9; --ion-text-color-step-900: #e6e6e6; - --ion-text-color-step-950: #f2f2f2; + --ion-text-color-step-950: #f5f5f5; --ion-background-color-step-50: #f2f2f2; --ion-background-color-step-100: #e6e6e6; diff --git a/src/views/notify/detail.vue b/src/views/notify/detail.vue index 4e2f23d..9ed88c3 100644 --- a/src/views/notify/detail.vue +++ b/src/views/notify/detail.vue @@ -23,7 +23,7 @@ function getConfigByType(type: string) {
-
+
diff --git a/src/views/notify/index.vue b/src/views/notify/index.vue index 7f4ebf7..069b06c 100644 --- a/src/views/notify/index.vue +++ b/src/views/notify/index.vue @@ -103,7 +103,7 @@ onBeforeMount(() => { class="py-3" @click="handleItemClick(item)" > -
+
diff --git a/src/views/riwa/index.vue b/src/views/riwa/index.vue index a422202..6d1d703 100644 --- a/src/views/riwa/index.vue +++ b/src/views/riwa/index.vue @@ -3,20 +3,6 @@ import IconParkOutlineApplicationMenu from "~icons/icon-park-outline/application import IconParkOutlineScanCode from "~icons/icon-park-outline/scan-code"; import News from "./components/news.vue"; import Rwa from "./components/rwa.vue"; - -const { open } = useQRScanner(); - -async function handleScan() { - const result = await open({ - title: "扫描二维码", - }); - - if (result) { - console.log("扫描结果:", result); - // TODO: 根据扫描结果进行相应处理 - // 例如:跳转到对应页面、显示信息等 - } -}