From 7ebaf8ab5acd7dbe559ef96cc47307946caabb5f Mon Sep 17 00:00:00 2001
From: pengjun <158915633@qq.com>
Date: Thu, 21 Sep 2023 11:42:37 +0800
Subject: [PATCH] table seo
---
src/assets/css/global.css | 19 +++++++---
.../doctorCheck/RegisterCheckList.vue | 8 ++--
.../report/PatientRegisterListNobtn.vue | 6 ++-
src/components/report/RegisterCheckStatus.vue | 8 ++--
.../sumDoctorCheck/SumAsbItemStatus.vue | 8 ++--
src/components/sumDoctorCheck/SumItems.vue | 4 +-
src/views/doctorCheck/doctorCheck.vue | 31 ++++++++++++++++
src/views/doctorCheck/sumDoctorCheck.vue | 30 +++++++++++++++
src/views/report/chargeAsbitem.vue | 37 +++++++++++++++++--
src/views/report/checkStatus.vue | 35 +++++++++++++++++-
src/views/report/unCheckAsbitem.vue | 29 +++++++++++++++
11 files changed, 189 insertions(+), 26 deletions(-)
diff --git a/src/assets/css/global.css b/src/assets/css/global.css
index 6ce1442..1a36848 100644
--- a/src/assets/css/global.css
+++ b/src/assets/css/global.css
@@ -1,18 +1,25 @@
-.el-table .warning-row {
- background: rgb(240, 125, 125);
+/* 表格行背景色样式 start */
+.el-table .warning {
+ background: #E6A23C;
}
-
-.el-table .unCheck-row {
+.el-table .danger {
+ background: #F56C6C;
+}
+.el-table .success {
+ background: #67C23A;
+}
+.el-table .primary {
background: #409EFF;
}
-
-.el-table .refuse-row {
+.el-table .info {
background: #909399;
}
.el-table .purple-row {
background: rgb(255, 0, 255);
}
+/* 表格行背景色样式 end */
+
.publicfontsize{
font-size: 18px;
}
\ No newline at end of file
diff --git a/src/components/doctorCheck/RegisterCheckList.vue b/src/components/doctorCheck/RegisterCheckList.vue
index 18deda8..17101d5 100644
--- a/src/components/doctorCheck/RegisterCheckList.vue
+++ b/src/components/doctorCheck/RegisterCheckList.vue
@@ -33,9 +33,9 @@ export default {
tableRowClassName({row, rowIndex}) {
//console.log('tableRowClassName',rowIndex,row)
if (row.completeFlag === '0') {
- return 'warning-row'; //未检
+ return 'danger'; //未检
} else if (row.completeFlag === '2') {
- return 'refuse-row'; //弃检
+ return 'info'; //弃检
}
return '';
@@ -86,11 +86,11 @@ export default {
};
\ No newline at end of file
diff --git a/src/views/doctorCheck/sumDoctorCheck.vue b/src/views/doctorCheck/sumDoctorCheck.vue
index 0e2f2f2..3a3c8ce 100644
--- a/src/views/doctorCheck/sumDoctorCheck.vue
+++ b/src/views/doctorCheck/sumDoctorCheck.vue
@@ -217,6 +217,36 @@ export default {
};