12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <view class="page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title='配置网络说明'></cus-header>
- <div class="top">打开设备开关,确认设备已通电开机成功</div>
- <image class="tl" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/70622a2f-add4-4c92-9693-03546839a155.png" mode="widthFix"></image>
- <div class="tip">首次开机设备将会自动进入配网模式</div>
- <div class="tip">已开机状态下,连续按Wi-Fi键三下,听到语音播报:“快去小程序绑定设备吧”,即已开始进入配网模式</div>
- <div class="adffcacjc">
- <image class="step" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/ba4f6caf-d501-4b2d-a91c-f6ad422886a2.png"></image>
- <div class="zt_btn" @tap="next">下一步</div>
- </div>
- </view>
- </template>
- <script>
- export default {
- data(){
- return {
-
- }
- },
- methods:{
- next(){
- uni.navigateTo({
- url:'/pagesHome/wifiSetMemo2'
- })
- }
- }
- }
- </script>
- <style scoped lang="less">
- .page{
- background: #FFFFFF;
- box-sizing: border-box;
- .top{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 32rpx;
- color: #000000;
- line-height: 45rpx;
- text-align: left;
- margin-top: 40rpx;
- padding-left: 40rpx;
- }
- .tl{
- width: 100%;
- margin-top: 60rpx;
- }
- .tip{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #111111;
- line-height: 33rpx;
- text-align: left;
- margin-top: 40rpx;
- padding-left: 40rpx;
- }
- .step{
- width: 100rpx;
- height: 16rpx;
- margin-top: 266rpx;
- }
- .zt_btn{
- width: calc(100% - 140rpx) !important;
- margin-top: 139rpx;
- }
- }
- </style>
|