emis-frontend/src/App.vue

49 lines
1.3 KiB
Vue
Raw Normal View History

2023-11-27 08:29:42 +00:00
<template>
<div id="app">
<router-view />
</div>
</template>
<script>
2024-04-22 05:33:25 +00:00
import { getI18nMessages } from "@/api/common"
2024-05-09 23:54:53 +00:00
2023-11-27 08:29:42 +00:00
export default {
name: 'App',
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
// return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
}
}
},
created() {
2024-05-09 23:54:53 +00:00
// this.zoneDomain=document.domain;
// this.$store.dispatch("zoneConfig/initZoneInfo", this.zoneDomain).then(() => {
2023-11-27 08:29:42 +00:00
// console.log("initOK");
// let settings=this.$store.state.zoneDomain;
// this.zoneConfig.logoUrl=settings.logoUrl;
// this.zoneConfig.homeUrl="http://"+this.zoneDomain;
// this.zoneConfig.kfqrImage=settings.kfqrImage;
// this.zoneConfig.logoInnerPicUrl=settings.logoInnerPicUrl;
2024-05-09 23:54:53 +00:00
// });
2023-11-27 08:29:42 +00:00
}
}
</script>
2024-05-13 04:36:25 +00:00
<style lang="scss" scoped>
2023-11-27 08:29:42 +00:00
body .el-table th.gutter{
display: table-cell!important;
}
2024-05-13 04:36:25 +00:00
body .el-table {
th.gutter, colgroup.gutter {
width: 5px !important;
}
}
body .el-table__header colgroup col[name="gutter"] {
display: table-cell !important;
}
2023-11-27 08:29:42 +00:00
</style>