第一版

This commit is contained in:
17792275749
2025-03-25 20:52:15 +08:00
commit 04d373b84e
88 changed files with 4539 additions and 0 deletions
@@ -0,0 +1,10 @@
const app = getApp();
Page({
// 获取wifi列表
openGetWifiList() {
wx.navigateTo({
url: "/pages/getWifiList/getWifiList"
})
}
})
@@ -0,0 +1,5 @@
{
"usingComponents": {},
"navigationBarTitleText": "绑定成功",
"disableScroll": true
}
@@ -0,0 +1,10 @@
<view class="icon">
<view>
<image src="/images/connectionSuccessful/icon.png" />
</view>
<view>绑定成功</view>
</view>
<view class="describe">随时随地同步测量数据</view>
<view class="btn" bind:tap="openGetWifiList">配置网络</view>
@@ -0,0 +1,49 @@
page {
width: 100%;
padding: 200rpx 85rpx 0;
box-sizing: border-box;
background-color: #ffffff;
}
.icon {
width: 100%;
margin-bottom: 540rpx;
}
.icon>view:first-of-type {
width: 360rpx;
height: 295rpx;
margin: 0 auto 50rpx;
}
.icon>view:last-of-type {
color: #252535;
width: 100%;
height: 40rpx;
font-size: 40rpx;
font-weight: bold;
line-height: 40rpx;
text-align: center;
}
.describe {
color: #B6B6B6;
width: 100%;
height: 26rpx;
font-size: 28rpx;
line-height: 28rpx;
text-align: center;
margin-bottom: 46rpx;
}
.btn {
color: #FFFFFF;
width: 100%;
height: 88rpx;
font-size: 32rpx;
font-weight: bold;
line-height: 88rpx;
text-align: center;
border-radius: 44rpx;
background-color: #1385FA;
}