<template> <view class="page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}"> <cus-header title='配置网络说明'></cus-header> <div class="top">找到 “Xiaozhi” Wi-Fi热点,点击连接成功</div> <image class="tl" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/745974a3-b685-4c8d-b017-0fbb0887df76.png" mode="widthFix"></image> <div class="adffcacjc"> <image class="step" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/2068b3ac-202c-4adf-847a-355c98930d4f.png"></image> <div class="zt_btn" @tap="next">下一步</div> </div> </view> </template> <script> export default { data(){ return { } }, methods:{ next(){ uni.navigateTo({ url:'/pagesHome/wifiSetMemo4' }) } } } </script> <style scoped lang="less"> .page{ background: #FFFFFF; box-sizing: border-box; .top{ font-family: PingFang-SC, PingFang-SC; font-weight: bold; font-size: 32rpx; color: #000000; line-height: 45rpx; text-align: left; margin-top: 40rpx; padding-left: 40rpx; } .tl{ width: 100%; margin-top: 60rpx; } .tip{ font-family: PingFangSC, PingFang SC; font-weight: 400; font-size: 24rpx; color: #111111; line-height: 33rpx; text-align: left; margin-top: 40rpx; padding-left: 40rpx; } .step{ width: 100rpx; height: 16rpx; margin-top: 46rpx; } .zt_btn{ width: calc(100% - 140rpx) !important; margin-top: 139rpx; } } </style>