wifiSetMemo1.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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="http://106.54.209.120:8188/static/wifi_set1.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="http://106.54.209.120:8188/static/set_dian1.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. .top{
  33. font-family: PingFang-SC, PingFang-SC;
  34. font-weight: bold;
  35. font-size: 32rpx;
  36. color: #000000;
  37. line-height: 45rpx;
  38. text-align: left;
  39. margin-top: 40rpx;
  40. padding-left: 40rpx;
  41. }
  42. .tl{
  43. width: 100%;
  44. margin-top: 60rpx;
  45. }
  46. .tip{
  47. font-family: PingFangSC, PingFang SC;
  48. font-weight: 400;
  49. font-size: 24rpx;
  50. color: #111111;
  51. line-height: 33rpx;
  52. text-align: left;
  53. margin-top: 40rpx;
  54. padding-left: 40rpx;
  55. }
  56. .step{
  57. width: 100rpx;
  58. height: 16rpx;
  59. margin-top: 166rpx;
  60. }
  61. .zt_btn{
  62. width: calc(100% - 140rpx) !important;
  63. margin-top: 139rpx;
  64. }
  65. }
  66. </style>