图片、视频加载方式

This commit is contained in:
zhujingzhou
2025-07-20 11:36:46 +07:00
parent 2ab6513b73
commit fa06b597e5
17 changed files with 1204 additions and 375 deletions
+19 -1
View File
@@ -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>