1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| <!--
| * @Author: your name
| * @Date: 2021-09-13 14:28:39
| * @LastEditTime: 2023-05-04 17:13:25
| * @LastEditors: zxq
| * @Description: In User Settings Edit
| * @FilePath: \qyp_finlean_plat\src\App.vue
| -->
| <template>
| <div id="app">
| <router-view />
| </div>
| </template>
|
| <script>
| export default {
| name: 'App',
| created(){
| }
| }
| </script>
| <style>
| /* .el-table thead{
| color: #000;
| } */
| body .el-table th.gutter {
| display: table-cell !important;
| }
| body {
| overflow: hidden;
| }
| </style>
|
|