添加创建积分本页面

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

@@ -5,11 +5,15 @@ const props = defineProps({
type: Number,
default: 0,
},
bgColor: {
type: String,
default: "#050b19",
},
});
</script>
<template>
<view class="background">
<view class="background" :style="{ backgroundColor: bgColor }">
<image
class="bg-image"
v-if="type === 0"
@@ -22,6 +26,12 @@ const props = defineProps({
src="../static/app-bg2.png"
mode="widthFix"
/>
<image
class="bg-image"
v-if="type === 2"
src="../static/app-bg3.png"
mode="widthFix"
/>
<view class="bg-overlay" v-if="type === 0"></view>
</view>
</template>
@@ -34,7 +44,6 @@ const props = defineProps({
left: 0;
top: 0;
z-index: -1;
background-color: #050b19;
}
.bg-image {