yz3456
2024-03-25 aa0481c047a57977d23ea2e1e2015866c9d4b201
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
33
34
35
36
37
38
<template>
    <div class="app-container">
 
      <el-backtop :bottom="150" :right="30">
        <el-button type="primary" circle class="el-icon-top"></el-button>
      </el-backtop>
 
      <h1 style="font-size:21px;padding-top:30px;display: flex;">
        <span>会议统计</span>
      </h1>
 
      <hr />
 
    </div>
  </template>
 
  <script>
 
  </script>
<style scoped>
  .el-table__row.statistics-warning-row {
    background: #E0EEFE;
 
  }
  .el-table__row.statistics-warning-row1 {
    background: #FFEFF2;
 
  }
  .el-table__cell {
    font-size: 14px; /* 设置字体大小 */
  }
  .button-container {
    display: inline-flex; /* 设置按钮容器为行内元素 */
  }
  .app-container {
    background-color: #FEF7FC;
  }
  </style>