yz3456
2024-04-06 6378fa4ea01c8c6a92bd3bf710686f5deedf99dd
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<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;">
        <p><span >会议统计</span></p>
        <div class="button-container"></div>
        <div style="display: flex; align-items: center;">
          <el-button @click="pictureStatistics" size="mini" type="text" v-hasPermi="['person:information:memo']" style="margin-left: 10px">
            <div class="form"><el-icon style="padding-right:30px;"></el-icon>
              <span class="text" style="width: 69px;height: 26px;font-size: 16px;
              font-family: Microsoft YaHei-Regular, Microsoft YaHei; color: #EBA4AA;">图标统计</span>
            </div>
          </el-button>
        </div>
        <div style="display: flex; align-items: center;">
          <el-button @click="newRequest" size="mini" type="text" v-hasPermi="['person:information:memo']" style="margin-left: 10px">
            <div class="form" style="width: 100px;"><el-icon style="padding-right:30px;"></el-icon>
              <span class="text" style="width: 69px;height: 26px;font-size: 16px;
              font-family: Microsoft YaHei-Regular, Microsoft YaHei; color: #EBA4AA;">新建</span>
            </div>
          </el-button>
        </div>
 
 
      </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; 设置按钮容器为行内元素 */
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
  }
  .app-container {
    background-color: #FEF7FC;
  }
  .form{
    background:left/25% no-repeat url('../../assets/icons/add1.png') ;
    height: 50px;
    line-height: 50px;
  }
  </style>