wifiSetMemo2.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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_set2.png" mode="widthFix"></image>
  6. <div class="adffcacjc">
  7. <image class="step" src="http://106.54.209.120:8188/static/set_dian2.png"></image>
  8. <div class="zt_btn" @tap="next">下一步</div>
  9. </div>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data(){
  15. return {
  16. }
  17. },
  18. methods:{
  19. next(){
  20. uni.navigateTo({
  21. url:'/pagesHome/wifiSetMemo3'
  22. })
  23. }
  24. }
  25. }
  26. </script>
  27. <style scoped lang="less">
  28. .page{
  29. background: #FFFFFF;
  30. .top{
  31. font-family: PingFang-SC, PingFang-SC;
  32. font-weight: bold;
  33. font-size: 32rpx;
  34. color: #000000;
  35. line-height: 45rpx;
  36. text-align: left;
  37. margin-top: 40rpx;
  38. padding-left: 40rpx;
  39. }
  40. .tl{
  41. width: 100%;
  42. margin-top: 60rpx;
  43. }
  44. .tip{
  45. font-family: PingFangSC, PingFang SC;
  46. font-weight: 400;
  47. font-size: 24rpx;
  48. color: #111111;
  49. line-height: 33rpx;
  50. text-align: left;
  51. margin-top: 40rpx;
  52. padding-left: 40rpx;
  53. }
  54. .step{
  55. width: 100rpx;
  56. height: 16rpx;
  57. margin-top: 166rpx;
  58. }
  59. .zt_btn{
  60. width: calc(100% - 140rpx) !important;
  61. margin-top: 139rpx;
  62. }
  63. }
  64. </style>