mirror of
https://gitee.com/log4j/pig-ui.git
synced 2024-12-23 05:40:20 +08:00
'admin-21.01.28:处理适配手机、平板等问题'
This commit is contained in:
parent
4e57c6295d
commit
aa0653e7e4
@ -6,8 +6,15 @@
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import { computed } from "vue";
|
||||
import { computed, onBeforeMount, onMounted, onUnmounted } from "vue";
|
||||
import { useStore } from "/@/store/index.ts";
|
||||
import {
|
||||
setLocal,
|
||||
getLocal,
|
||||
setSession,
|
||||
getSession,
|
||||
removeSession,
|
||||
} from "/@/utils/storage.ts";
|
||||
import Defaults from "/@/views/layout/main/defaults.vue";
|
||||
import Classic from "/@/views/layout/main/classic.vue";
|
||||
import Transverse from "/@/views/layout/main/transverse.vue";
|
||||
@ -17,9 +24,41 @@ export default {
|
||||
components: { Defaults, Classic, Transverse, Columns },
|
||||
setup() {
|
||||
const store = useStore();
|
||||
// 获取布局配置信息
|
||||
const getThemeConfig = computed(() => {
|
||||
return store.state.themeConfig;
|
||||
});
|
||||
// 窗口大小改变时
|
||||
const onLayoutResize = () => {
|
||||
const clientWidth = document.body.clientWidth;
|
||||
console.log(clientWidth);
|
||||
if (clientWidth < 1000) {
|
||||
if (getLocal("themeConfig").layout === "defaults") return false;
|
||||
setSession("oldThemeConfig", getLocal("themeConfig"));
|
||||
const config = getLocal("themeConfig");
|
||||
config.layout = "defaults";
|
||||
console.log(config);
|
||||
setLocal("themeConfig", config);
|
||||
} else {
|
||||
if (
|
||||
getLocal("themeConfig").layout === getSession("oldThemeConfig").layout
|
||||
)
|
||||
return false;
|
||||
setLocal("themeConfig", getSession("oldThemeConfig"));
|
||||
}
|
||||
};
|
||||
// 页面加载前
|
||||
onBeforeMount(() => {
|
||||
window.addEventListener("resize", onLayoutResize);
|
||||
});
|
||||
// 页面加载时
|
||||
onMounted(() => {
|
||||
onLayoutResize();
|
||||
});
|
||||
// 页面卸载时
|
||||
onUnmounted(() => {
|
||||
window.removeEventListener("resize", onLayoutResize);
|
||||
});
|
||||
return {
|
||||
getThemeConfig,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user