<template> <view class="page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}"> <cus-header title='配置网络说明'></cus-header> <div class="top">选择要连接的Wi-Fi,输入Wi-Fi密码,配网成功</div> <image class="tl" src="http://106.54.209.120:8188/static/wifi_set4.png" mode="widthFix"></image> <div class="adffcacjc"> <image class="step" src="http://106.54.209.120:8188/static/set_dian4.png"></image> <div class="zt_btn" @tap="goback">返回</div> </div> </view> </template> <script> export default { data(){ return { } }, methods:{ goback(){ uni.redirectTo({ url:'/pagesMy/deviceAdd' }) } } } </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>