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