| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 | <template>	<view class="page adffcac" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">		<cus-header title='配置网络说明'></cus-header>		<div class="top">打开手机蓝牙及定位服务</div>		<div class="title">1.前往设置 - 蓝牙 - 打开蓝牙</div>		<image class="tl" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/07/03/0ccde807-90cc-4dee-b3ad-25c3f2708490.png" mode="widthFix"></image>		<div class="title">2.前往设置 - 隐私 - 打开定位服务并回到本页面</div>		<image class="tl" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/07/03/bc35f400-eecf-4835-bdf6-b6c2155af910.png" mode="widthFix"></image>		<image class="step" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/06/03/71bbaf55-66d9-4c6b-a196-4fa178ae3159.png"></image>		<div class="zt_btn" @tap="next">下一步</div>	</view></template><script>	export default {		data(){			return {							}		},		methods:{			next(){				uni.navigateTo({					url:'/pagesHome/wifiSetMemo3'				})			}		}	}</script><style scoped lang="less">	.page{		background: #FFFFFF;		box-sizing: border-box;		.top{			font-family: PingFangSC, PingFang SC;			font-weight: 400;			font-size: 32rpx;			color: #000000;			line-height: 45rpx;			text-align: center;			margin-top: 64rpx;		}		.title{			font-family: PingFang-SC, PingFang-SC;			font-weight: bold;			font-size: 26rpx;			color: #7C8592;			line-height: 37rpx;			text-align: center;			margin-top: 51rpx;		}		.tl{			width: 321rpx;			height: 276rpx;			margin-top: 21rpx;		}		.step{			width: 100rpx;			height: 16rpx;			margin-top: 115rpx;		}		.zt_btn{			width: calc(100% - 140rpx) !important;			margin-top: 139rpx;		}	}</style>
 |