<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>
|