Files
klp-oa/klp-ui/src/App.vue

40 lines
1.0 KiB
Vue
Raw Normal View History

<template>
<div id="app">
<router-view />
<theme-picker />
</div>
</template>
<script>
import ThemePicker from "@/components/ThemePicker";
export default {
name: "App",
components: { ThemePicker },
2025-07-19 17:29:15 +08:00
created() {
// 应用启动时全局初始化分类数据
2025-07-24 10:08:09 +08:00
if (this.$store.getters.token) {
// this.$store.dispatch('category/getCategoryList');
// this.$store.dispatch('category/getProductMap');
// this.$store.dispatch('category/getRawMaterialMap');
// this.$store.dispatch('category/getBomMap');
// this.$store.dispatch('finance/getFinancialAccounts');
// this.$store.dispatch('craft/getProcessList');
2025-07-24 10:08:09 +08:00
}
2025-07-19 17:29:15 +08:00
},
metaInfo() {
return {
title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
titleTemplate: title => {
return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
}
}
}
};
</script>
<style scoped>
#app .theme-picker {
display: none;
}
</style>