<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="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/f5869d04-5a7c-47df-9821-f97bf6d200de.png" mode="widthFix"></image>
		<div class="adffcacjc">
			<image class="step" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/ffdb6efc-69f9-4eb9-ab9f-85c3d645165d.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>