图片、视频加载方式
This commit is contained in:
+19
-1
@@ -1,3 +1,9 @@
|
||||
<!--
|
||||
* @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 />
|
||||
@@ -5,17 +11,29 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import mixinSyscfg from './mixins/mixinSyscfg'
|
||||
|
||||
export default {
|
||||
name: 'App'
|
||||
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>
|
||||
|
||||
Reference in New Issue
Block a user