优化代码

This commit is contained in:
TOP糯米 2023-04-08 00:33:16 +08:00
parent fd2714e968
commit b081a06cf9
1 changed files with 10 additions and 1 deletions

View File

@ -4,8 +4,17 @@ export default {
pageConfig: {},
},
onLaunch: function () {
let that = this;
for (let method of ["navigateTo", "redirectTo", "reLaunch", "switchTab", "navigateBack"]) {
uni.addInterceptor(method, {
success() {
that.$store.commit("toast/show", false);
that.$store.commit("toast/title", "");
},
});
}
let pageConfig = this.$storage.get("system_config");
if (true) {
if (!pageConfig) {
const { windowWidth, windowHeight, statusBarHeight, safeAreaInsets } = uni.getSystemInfoSync();
// #ifndef H5
const { height, top } = uni.getMenuButtonBoundingClientRect();