This commit is contained in:
2024-07-17 17:06:22 +08:00
parent 8e414e4445
commit 806da80f98
2 changed files with 29 additions and 2 deletions

View File

@ -72,6 +72,33 @@ export default {
@import "~@/assets/styles/mixin.scss";
@import "~@/assets/styles/variables.scss";
::v-deep .el-table__body-wrapper::-webkit-scrollbar {
width: 15px !important;
height: 15px !important;
background-color: #FAFAFA !important;
}
::v-deep .el-table {
th {
background-color: #F1F3F5 !important;
}
::-webkit-scrollbar-thumb:hover {
background-color: #C1C1C1 !important;
}
::-webkit-scrollbar-thumb {
border-radius: 10px !important;
background-color: #D6D5D5 !important;
}
::-webkit-scrollbar-track {
background-color: #FAFAFA !important;
}
}
.app-wrapper {
@include clearfix;
position: relative;

View File

@ -284,8 +284,8 @@ export default {
address: row.address,
patientSource: row.patientSource,
createTime: row.createTime,
hospitalAgencyName:row.hospitalAgencyName,
mainDiagnosis:row.mainDiagnosis,
hospitalAgencyName: row.hospitalAgencyName,
mainDiagnosis: row.mainDiagnosis,
age: row.birthDate ? getAge(row.birthDate) : '',
},
});