wifiSetMemo4.vue 1.5 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">选择要连接的Wi-Fi,输入Wi-Fi密码,配网成功</div>
  5. <image class="tl" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/f5869d04-5a7c-47df-9821-f97bf6d200de.png" mode="widthFix"></image>
  6. <div class="adffcacjc">
  7. <image class="step" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/ffdb6efc-69f9-4eb9-ab9f-85c3d645165d.png"></image>
  8. <div class="zt_btn" @tap="goback">返回</div>
  9. </div>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data(){
  15. return {
  16. }
  17. },
  18. methods:{
  19. goback(){
  20. uni.redirectTo({
  21. url:'/pagesMy/deviceAdd'
  22. })
  23. }
  24. }
  25. }
  26. </script>
  27. <style scoped lang="less">
  28. .page{
  29. background: #FFFFFF;
  30. box-sizing: border-box;
  31. .top{
  32. font-family: PingFang-SC, PingFang-SC;
  33. font-weight: bold;
  34. font-size: 32rpx;
  35. color: #000000;
  36. line-height: 45rpx;
  37. text-align: left;
  38. margin-top: 40rpx;
  39. padding-left: 40rpx;
  40. }
  41. .tl{
  42. width: 100%;
  43. margin-top: 60rpx;
  44. }
  45. .tip{
  46. font-family: PingFangSC, PingFang SC;
  47. font-weight: 400;
  48. font-size: 24rpx;
  49. color: #111111;
  50. line-height: 33rpx;
  51. text-align: left;
  52. margin-top: 40rpx;
  53. padding-left: 40rpx;
  54. }
  55. .step{
  56. width: 100rpx;
  57. height: 16rpx;
  58. margin-top: 46rpx;
  59. }
  60. .zt_btn{
  61. width: calc(100% - 140rpx) !important;
  62. margin-top: 139rpx;
  63. }
  64. }
  65. </style>