From 1910e9f27373b8b4da75f076762025ceb3419965 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期四, 12 六月 2025 15:40:50 +0800
Subject: [PATCH] fix: 暂时隐藏电信充值通道
---
apps/taro/src/subpackages/my/dashboard/dashboard.vue | 29 ++++++++++++++++++++++++++---
1 files changed, 26 insertions(+), 3 deletions(-)
diff --git a/apps/taro/src/subpackages/my/dashboard/dashboard.vue b/apps/taro/src/subpackages/my/dashboard/dashboard.vue
index e31c527..0625ea3 100644
--- a/apps/taro/src/subpackages/my/dashboard/dashboard.vue
+++ b/apps/taro/src/subpackages/my/dashboard/dashboard.vue
@@ -1,14 +1,37 @@
<template>
- <PageLayout title="鏁版嵁鐪嬫澘" class="dashboard-page-wrapper" hasBorder>
+ <PageLayoutWithBg class="dashboard-page-wrapper">
+ <template #navigationBar>
+ <TransparentNavigationBar :title="'鏁版嵁鐪嬫澘'" :is-absolute="false">
+ </TransparentNavigationBar>
+ </template>
+ <template #bg>
+ <img :src="OssAssets.common.DataPageBg" class="dashboard-page-bg" />
+ </template>
<InnerPage />
- </PageLayout>
+ </PageLayoutWithBg>
</template>
<script setup lang="ts">
-import { PageLayout } from '@/components';
import InnerPage from './InnerPage.vue';
+import { OssAssets } from '@/constants';
defineOptions({
name: 'dashboard',
});
</script>
+
+<style lang="scss">
+@import '@/styles/common.scss';
+
+.dashboard-page-wrapper {
+ .dashboard-page-bg {
+ position: fixed;
+ z-index: -1;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ }
+}
+</style>
--
Gitblit v1.9.1