// 全局样式
|
.follow-up-statistics,
|
.first-follow-up,
|
.second-follow-up,
|
.continued-care {
|
.your-table-container {
|
margin-top: 10px;
|
}
|
|
.button-zx {
|
color: rgb(70, 204, 238);
|
}
|
|
// 美化合计行样式
|
::v-deep .el-table__footer {
|
.el-table__cell {
|
background-color: #f5f7fa;
|
font-weight: 600;
|
color: #409eff;
|
|
.cell {
|
font-weight: 600;
|
color: #409eff;
|
}
|
}
|
}
|
|
// 内部表格合计行样式
|
::v-deep .inner-table .el-table__footer {
|
.el-table__cell {
|
background-color: #ecf5ff;
|
font-weight: 500;
|
color: #67c23a;
|
|
.cell {
|
font-weight: 500;
|
color: #67c23a;
|
}
|
}
|
}
|
|
// 百分比字段特殊样式
|
::v-deep .el-table__footer .el-table__cell[data-field="followUpRate"] .cell,
|
::v-deep .el-table__footer .el-table__cell[data-field="rate"] .cell,
|
::v-deep .el-table__footer .el-table__cell[data-field="followUpRateAgain"] .cell,
|
::v-deep .el-table__footer .el-table__cell[data-field="completionRate"] .cell {
|
color: #e6a23c !important;
|
font-weight: 700 !important;
|
}
|
|
// 内层医生表格样式
|
.inner-table {
|
::v-deep .el-table__header-wrapper {
|
background-color: #f0f7ff !important;
|
|
th {
|
background-color: #f0f7ff !important;
|
}
|
}
|
|
::v-deep .el-table__body-wrapper {
|
tr {
|
background-color: #f9fbfe !important;
|
|
&:hover {
|
background-color: #e6f1ff !important;
|
}
|
}
|
}
|
|
::v-deep .el-table--border {
|
border-color: #d9e8ff !important;
|
|
td, th {
|
border-color: #d9e8ff !important;
|
}
|
}
|
}
|
|
/* 使行有手型指针 */
|
::v-deep .el-table__row {
|
cursor: pointer;
|
}
|
|
/* 展开行样式 */
|
::v-deep .el-table__expanded-cell {
|
padding: 10px 0 !important;
|
background: #f8f8f8;
|
}
|
}
|