fix:新增更新中图片&设备页面新增跳转wifi页面入口

This commit is contained in:
2026-06-09 09:59:13 +08:00
parent 9b47b313a7
commit 54e5427a77
3 changed files with 12 additions and 2 deletions
+10
View File
@@ -93,6 +93,11 @@ const unbindDevice = async () => {
device.value = {};
};
/** 连接wifi跳转到wifi列表页面 */
const joinWifi = () => {
uni.navigateTo({ url: "/pages/ota-wifi" });
};
const toDeviceIntroPage = () => {
uni.navigateTo({
url: "/pages/device-intro",
@@ -273,6 +278,11 @@ onShow(() => {
>解绑</SButton
>
</view>
<view :style="{ marginTop: '20rpx' }">
<SButton :onClick="() => $clickSound(joinWifi)" width="80vw" :rounded="40"
>设备连接WIFI</SButton
>
</view>
</view>
</Container>
</template>