wifiSetMemo1.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <view class="page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='配置网络说明'></cus-header>
  4. <div class="top">打开设备开关,确认设备已通电开机成功</div>
  5. <image class="tl" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/70622a2f-add4-4c92-9693-03546839a155.png" mode="widthFix"></image>
  6. <div class="tip">首次开机设备将会自动进入配网模式</div>
  7. <div class="tip">已开机状态下,连续按Wi-Fi键三下,听到语音播报:“快去小程序绑定设备吧”,即已开始进入配网模式</div>
  8. <div class="adffcacjc">
  9. <image class="step" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/ba4f6caf-d501-4b2d-a91c-f6ad422886a2.png"></image>
  10. <div class="zt_btn" @tap="next">下一步</div>
  11. </div>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. data(){
  17. return {
  18. }
  19. },
  20. methods:{
  21. next(){
  22. uni.navigateTo({
  23. url:'/pagesHome/wifiSetMemo2'
  24. })
  25. }
  26. }
  27. }
  28. </script>
  29. <style scoped lang="less">
  30. .page{
  31. background: #FFFFFF;
  32. box-sizing: border-box;
  33. .top{
  34. font-family: PingFang-SC, PingFang-SC;
  35. font-weight: bold;
  36. font-size: 32rpx;
  37. color: #000000;
  38. line-height: 45rpx;
  39. text-align: left;
  40. margin-top: 40rpx;
  41. padding-left: 40rpx;
  42. }
  43. .tl{
  44. width: 100%;
  45. margin-top: 60rpx;
  46. }
  47. .tip{
  48. font-family: PingFangSC, PingFang SC;
  49. font-weight: 400;
  50. font-size: 24rpx;
  51. color: #111111;
  52. line-height: 33rpx;
  53. text-align: left;
  54. margin-top: 40rpx;
  55. padding-left: 40rpx;
  56. }
  57. .step{
  58. width: 100rpx;
  59. height: 16rpx;
  60. margin-top: 266rpx;
  61. }
  62. .zt_btn{
  63. width: calc(100% - 140rpx) !important;
  64. margin-top: 139rpx;
  65. }
  66. }
  67. </style>