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: 根据扫描结果进行相应处理 - // 例如:跳转到对应页面、显示信息等 - } -}