feat(M03-D): 完成场景码NFC与受控WiFi

This commit is contained in:
Codex
2026-06-18 15:56:36 +08:00
parent 88fa22ee92
commit d563078a9f
28 changed files with 859 additions and 14 deletions
+8
View File
@@ -0,0 +1,8 @@
Page({
data: {
storeId: '',
},
onLoad(options) {
this.setData({ storeId: options.storeId || '' })
},
})
+3
View File
@@ -0,0 +1,3 @@
{
"navigationBarTitleText": "门店详情"
}
+5
View File
@@ -0,0 +1,5 @@
<view class="page">
<view class="title">门店详情</view>
<view>门店编号:{{storeId}}</view>
<view class="notice">场景码仅用于页面导航,不授予开门或设备控制权限。</view>
</view>
+14
View File
@@ -0,0 +1,14 @@
.page {
padding: 32rpx;
}
.title {
margin-bottom: 24rpx;
font-size: 40rpx;
font-weight: 600;
}
.notice {
margin-top: 32rpx;
color: #777777;
}