添加创建积分本页面

This commit is contained in:
kron
2025-07-29 10:46:37 +08:00
parent 9d6bcde9ba
commit e073f3eb0f
17 changed files with 515 additions and 10 deletions

View File

@@ -32,6 +32,14 @@ defineProps({
type: Boolean,
default: false,
},
bgColor: {
type: String,
default: "#050b19",
},
whiteBackArrow: {
type: Boolean,
default: true,
},
});
const isIos = ref(true);
const showHint = ref(false);
@@ -67,8 +75,13 @@ const goBack = () => {
<template>
<view>
<AppBackground :type="bgType" />
<Header v-if="!isHome" :title="title" :onBack="onBack" />
<AppBackground :type="bgType" :bgColor="bgColor" />
<Header
v-if="!isHome"
:title="title"
:onBack="onBack"
:whiteBackArrow="whiteBackArrow"
/>
<BackToGame v-if="showBackToGame" />
<view
class="content"