wifiSetMemo4.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <view class="page adffcac" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
  3. <cus-header title='配置网络说明'></cus-header>
  4. <div class="top">选择要连接的Wi-Fi,点击加入</div>
  5. <image class="tl" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/07/03/6349aad0-3d29-4d2b-a9b1-1a88a5239989.png" mode="widthFix"></image>
  6. <image class="step" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/06/03/ce79204c-cb1d-4f5d-b31f-1a0240cd51cd.png"></image>
  7. <div class="zt_btn" @tap="goback">返回</div>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data(){
  13. return {
  14. }
  15. },
  16. methods:{
  17. goback(){
  18. uni.redirectTo({
  19. url:'/pagesMy/deviceAdd'
  20. })
  21. }
  22. }
  23. }
  24. </script>
  25. <style scoped lang="less">
  26. .page{
  27. background: #FFFFFF;
  28. box-sizing: border-box;
  29. padding: 0 60rpx;
  30. .top{
  31. font-family: PingFangSC, PingFang SC;
  32. font-weight: 400;
  33. font-size: 32rpx;
  34. color: #111111;
  35. line-height: 45rpx;
  36. text-align: center;
  37. margin-top: 64rpx;
  38. }
  39. .tl{
  40. width: 100%;
  41. margin-top: 75rpx;
  42. }
  43. .step{
  44. width: 100rpx;
  45. height: 16rpx;
  46. margin-top: 190rpx;
  47. }
  48. .zt_btn{
  49. margin-top: 139rpx;
  50. }
  51. }
  52. </style>