12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <template>
- <view class="page adffcac" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title='配置网络说明'></cus-header>
- <div class="top">设置 - 无限局域网 - 开启</div>
- <image class="tl" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/07/03/c63d1188-10ec-4e4d-84e1-1bd67773743a.png" mode="widthFix"></image>
- <image class="step" src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/06/03/db6520f4-f46b-4baa-b248-73338ed90318.png"></image>
- <div class="zt_btn" @tap="next">下一步</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;
- padding: 0 60rpx;
- .top{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 32rpx;
- color: #000000;
- line-height: 45rpx;
- text-align: center;
- margin-top: 64rpx;
- }
- .tl{
- width: 100%;
- margin-top: 75rpx;
- }
- .step{
- width: 100rpx;
- height: 16rpx;
- margin-top: 146rpx;
- }
- .zt_btn{
- margin-top: 139rpx;
- }
- }
- </style>
|