feat: uni-app 前端骨架(登录/孩子/地图/闯关/结算)

This commit is contained in:
2026-08-13 12:54:45 +08:00
parent ae79c13834
commit 841191185e
16 changed files with 8119 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
<script>
export default {
onLaunch() {
console.log('36wisdom app launch')
}
}
</script>
<style>
page {
background-color: #fdf6ec;
font-size: 28rpx;
color: #5b4636;
}
/* 全局卡通配色 */
.bg-warm {
background-color: #fdf6ec;
}
.card {
background: #ffffff;
border-radius: 24rpx;
box-shadow: 0 6rpx 20rpx rgba(91, 70, 54, 0.08);
}
.btn-primary {
background: linear-gradient(135deg, #ff9a3d, #ff6b35);
color: #ffffff;
border-radius: 48rpx;
font-size: 32rpx;
font-weight: 600;
padding: 20rpx 0;
text-align: center;
}
.btn-primary:active {
opacity: 0.85;
}
.btn-disabled {
background: #e5d9c8;
color: #b3a18d;
}
.title-lg {
font-size: 40rpx;
font-weight: 700;
color: #5b4636;
}
.text-muted {
color: #a08c74;
font-size: 24rpx;
}
</style>