feat(M03-D): 完成场景码NFC与受控WiFi
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
Page({
|
||||
data: {
|
||||
storeId: '',
|
||||
roomId: '',
|
||||
},
|
||||
onLoad(options) {
|
||||
this.setData({
|
||||
storeId: options.storeId || '',
|
||||
roomId: options.roomId || '',
|
||||
})
|
||||
},
|
||||
})
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"navigationBarTitleText": "房间详情"
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
<view class="page">
|
||||
<view class="title">房间详情</view>
|
||||
<view>门店编号:{{storeId}}</view>
|
||||
<view>房间编号:{{roomId}}</view>
|
||||
<view class="notice">扫码或 NFC 只打开此页面,开门权限仍由有效订单单独校验。</view>
|
||||
</view>
|
||||
@@ -0,0 +1,14 @@
|
||||
.page {
|
||||
padding: 32rpx;
|
||||
}
|
||||
|
||||
.title {
|
||||
margin-bottom: 24rpx;
|
||||
font-size: 40rpx;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.notice {
|
||||
margin-top: 32rpx;
|
||||
color: #777777;
|
||||
}
|
||||
Reference in New Issue
Block a user