feat: init project with miniprogram, cloud functions and admin console

这个提交包含在:
Guoguo
2026-04-22 21:24:20 +08:00
当前提交 a84e37a6e2
修改 106 个文件,包含 5902 行新增0 行删除
@@ -0,0 +1,7 @@
Page({
data: {},
onBackHome: function () {
wx.switchTab({ url: '/pages/index/index' })
}
})
@@ -0,0 +1,3 @@
{
"navigationBarTitleText": "订阅成功"
}
@@ -0,0 +1,8 @@
<view class="container">
<view class="card text-center">
<view class="success-icon">&#10003;</view>
<view class="section-title">订阅成功</view>
<view class="text-muted mb-30">您已成功订阅,现在可以开始使用</view>
<view class="btn-primary" bindtap="onBackHome">返回首页</view>
</view>
</view>
@@ -0,0 +1,11 @@
.success-icon {
width: 120rpx;
height: 120rpx;
border-radius: 50%;
background-color: #52c41a;
color: #ffffff;
font-size: 72rpx;
line-height: 120rpx;
text-align: center;
margin: 40rpx auto;
}