InspectionCleaning/App.vue

95 lines
3.3 KiB
Vue
Raw Normal View History

2025-04-07 09:30:11 +08:00
<script>
2025-04-10 09:12:18 +08:00
// #ifdef APP-PLUS
import appUpdate from "@/components/appUpdate/appUpdate.js";
// #endif
2025-04-07 09:30:11 +08:00
2025-04-10 09:12:18 +08:00
export default {
onLaunch: function () {
console.log("%c%s", "color:red", "onLaunch---");
2025-04-10 14:21:16 +08:00
// uni.showLoading({ title: "等待参数传入" });
2025-04-10 09:12:18 +08:00
// uni.setStorageSync("token", "");
window.initFn = this.initFn;
// this.initFn();
//console.log('App Launch')
// #ifdef APP-PLUS
let systemInfo = uni.getSystemInfoSync();
const data = {
appid: systemInfo.appId,
version: systemInfo.appVersion,
};
console.log(data);
//把appid和版本发送请求服务器看服务器上是否有更新
this.$api.checkVersion(data).then((res) => {
console.log(res);
if (res.code == 0) {
//如果返回0则表示有更新
appUpdate(res);
}
});
// #endif
},
onShow: function () {
// console.log('%c%s', 'color:red', 'onShow---');
// #ifdef MP-WEIXIN
// 当向小程序后台请求完新版本信息会进行回调。res: {hasUpdate: true, version: 1.0.0}
updateManager.onCheckForUpdate(function (res) {
if (res.hasUpdate) {
// 有更新
uni.showLoading({ title: "更新中..." }); // 开始下载前显示Loading
}
});
// 当新版本下载完成,会进行回调
updateManager.onUpdateReady(function () {
uni.hideLoading(); // 关闭 Loading
uni.showModal({
// 弹确认框(强制更新)
title: "更新提示",
content: "更新完毕,是否重启?",
success: function (res) {
if (res.confirm) {
updateManager.applyUpdate(); // 强制小程序重启并使用新版本。
}
},
});
});
// 当新版本下载失败,会进行回调
updateManager.onUpdateFailed(function () {
uni.hideLoading(); // 关闭 Loading
uni.showToast({ title: "更新失败,稍后再试...", icon: "error" });
});
// #endif
},
onHide: function () {},
methods: {
initFn(data) {
2025-04-10 16:49:39 +08:00
if (!data) {
return uni.showToast({ title: "未传入参数 initFn", icon: "none" });
}
2025-04-10 09:12:18 +08:00
// uni.showModal({
2025-04-10 16:49:39 +08:00
// title: "查看initFn",
// content: JSON.stringify(data) || "未传入参数 initFn",
2025-04-10 09:12:18 +08:00
// showCancel: true,
// success: function (res) {},
// });
2025-04-10 16:49:39 +08:00
// "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJodHRwOi8vc2NoZW1hcy54bWxzb2FwLm9yZy93cy8yMDA1LzA1L2lkZW50aXR5L2NsYWltcy9zaWQiOiIwOGRkNzFiZC01N2MxLTQ1YmMtODBiYS0xMjkzYjU4MTViMmEiLCJ1bmlxdWVfbmFtZSI6IuS_nea0gSIsInJvbGUiOiJVc2VyIiwiaHR0cDovL3NjaGVtYXMueG1sc29hcC5vcmcvd3MvMjAwNS8wNS9pZGVudGl0eS9jbGFpbXMvbW9iaWxlcGhvbmUiOiIxODE3NDAxMDU2MiIsImdyb3Vwc2lkIjoiNGIyZDk2NjItYTc2OC0wOGYyLWEwYzgtNzYyYjhjNzZkYTJhIiwibmJmIjoxNzQ0MjYzMTAyLCJleHAiOjE3NDQyNjY3MDIsImlhdCI6MTc0NDI2MzEwMn0.ZJTwC7rWCcywoM7ncysw-JRIiwXz4y_6hlmqctN-gMM"
let token = data.token;
uni.setStorageSync("token", "Bearer " + token);
2025-04-10 09:12:18 +08:00
uni.switchTab({
url: "/pages/index/index",
success() {
console.log("跳转成功");
2025-04-10 16:49:39 +08:00
window.initFn = null; // 清除全局函数
2025-04-10 09:12:18 +08:00
},
fail(err) {
console.error("跳转失败", err);
},
});
},
},
};
2025-04-07 09:30:11 +08:00
</script>
<style lang="scss">
2025-04-10 09:12:18 +08:00
@import "@/uni_modules/uview-ui/index.scss";
2025-04-07 09:30:11 +08:00
</style>