40 lines
646 B
Vue
Executable File
40 lines
646 B
Vue
Executable File
<!--
|
|
* @Date: 2024-05-21 21:33:04
|
|
* @LastEditors: Administrator admin@example.com
|
|
* @LastEditTime: 2024-06-17 17:59:57
|
|
* @FilePath: /txsm_webAdmin/src/App.vue
|
|
-->
|
|
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import mixinSyscfg from './mixins/mixinSyscfg'
|
|
|
|
export default {
|
|
name: 'App',
|
|
mixins: [mixinSyscfg],
|
|
async created() {
|
|
await this.getSyscfg()
|
|
}
|
|
}
|
|
</script>
|
|
<style lang="scss">
|
|
.el-tooltip__popper {
|
|
max-width: 600px;
|
|
}
|
|
|
|
.el-table {
|
|
font-size: 12px !important;
|
|
color: rgb(56, 51, 51) !important;
|
|
}
|
|
|
|
.tag-wrap {
|
|
// height: 200px;
|
|
overflow: scroll;
|
|
overflow-x: hidden;
|
|
}
|
|
</style>
|