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,14 @@
Page({
data: {
deviceId: '',
trialDays: 7
},
onLoad: function (options) {
this.setData({ deviceId: options.device_id || '' })
},
onStart: function () {
wx.redirectTo({ url: '/pages/wear-check/wear-check' })
}
})
@@ -0,0 +1,3 @@
{
"navigationBarTitleText": "绑定成功"
}
@@ -0,0 +1,9 @@
<view class="container">
<view class="card text-center">
<view class="success-icon">&#10003;</view>
<view class="section-title">绑定成功</view>
<view class="text-muted mb-20">设备已成功绑定到您的账号</view>
<view class="text-muted mb-30">已自动发放 {{trialDays}} 天试用</view>
<view class="btn-primary" bindtap="onStart">开始使用</view>
</view>
</view>
@@ -0,0 +1,10 @@
.success-icon {
width: 120rpx;
height: 120rpx;
border-radius: 50%;
background-color: #52c41a;
color: #ffffff;
font-size: 64rpx;
line-height: 120rpx;
margin: 40rpx auto;
}