From 556d831aa7d10c15bccae2d1e5bc3655e22760b5 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 10 九月 2025 15:55:55 +0800
Subject: [PATCH] 打开移动充值通道
---
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