fix: WiFi弹窗
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 55s

This commit is contained in:
sexygoat
2026-04-23 17:15:21 +08:00
parent 8dc8600b52
commit 1d6c12e8d7
2 changed files with 9 additions and 3 deletions

View File

@@ -61,7 +61,7 @@
<view class="function-icon"> <view class="function-icon">
<image src="/static/bind-phone.png" mode="aspectFit" alt="绑定手机号"></image> <image src="/static/bind-phone.png" mode="aspectFit" alt="绑定手机号"></image>
</view> </view>
<view :class="['function-name', alreadyBindPhone ? 'text-primary' : '']"> <view :class="['function-name', alreadyBindPhone ? 'text-primary' : 'text-danger']">
{{ alreadyBindPhone ? '已绑定' : '未绑定' }} {{ alreadyBindPhone ? '已绑定' : '未绑定' }}
</view> </view>
</view> </view>

View File

@@ -25,11 +25,11 @@
<view class="flex-col-g20"> <view class="flex-col-g20">
<view class="flex-col-g8"> <view class="flex-col-g8">
<label class="caption">名称:</label> <label class="caption">名称:</label>
<up-input placeholder="WIFI名称" border="surround" v-model="wifi_info.ssid" /> <up-input placeholder="WIFI名称" class="wifi-input" v-model="wifi_info.ssid" />
</view> </view>
<view class="flex-col-g8"> <view class="flex-col-g8">
<label class="caption">密码:</label> <label class="caption">密码:</label>
<up-input placeholder="WIFI密码" border="surround" v-model="wifi_info.pwd" /> <up-input placeholder="WIFI密码" class="wifi-input" v-model="wifi_info.pwd" />
</view> </view>
</view> </view>
<view class="btn-group mt-20"> <view class="btn-group mt-20">
@@ -732,6 +732,12 @@
font-weight: 600; font-weight: 600;
color: var(--text-primary); color: var(--text-primary);
} }
.wifi-input {
border: 2rpx solid var(--border-light);
border-radius: 8rpx;
padding: 8rpx 16rpx;
}
} }
.bottom-spacer { .bottom-spacer {