12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <template>
- <view class="page adffcac" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title='配置网络说明'></cus-header>
- <div class="top">选择要连接的Wi-Fi,点击加入</div>
- <image class="tl" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/07/03/6349aad0-3d29-4d2b-a9b1-1a88a5239989.png" mode="widthFix"></image>
- <image class="step" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/06/03/ce79204c-cb1d-4f5d-b31f-1a0240cd51cd.png"></image>
- <div class="zt_btn" @tap="goback">返回</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;
- padding: 0 60rpx;
- .top{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 32rpx;
- color: #111111;
- line-height: 45rpx;
- text-align: center;
- margin-top: 64rpx;
- }
- .tl{
- width: 100%;
- margin-top: 75rpx;
- }
- .step{
- width: 100rpx;
- height: 16rpx;
- margin-top: 190rpx;
- }
- .zt_btn{
- margin-top: 139rpx;
- }
- }
- </style>
|