diff --git a/src/layout/index.vue b/src/layout/index.vue index 683516d..d101131 100644 --- a/src/layout/index.vue +++ b/src/layout/index.vue @@ -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; diff --git a/src/views/manage/patientInfo/index.vue b/src/views/manage/patientInfo/index.vue index 4a2fdaf..b101baf 100644 --- a/src/views/manage/patientInfo/index.vue +++ b/src/views/manage/patientInfo/index.vue @@ -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) : '', }, });