From fcf63a27549ab3193e8718bf006cb5a7ced6e6f2 Mon Sep 17 00:00:00 2001 From: bianyaqi Date: Tue, 7 Nov 2023 17:10:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BF=94=E5=AE=89=E6=A0=B7=E5=BC=8F=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/modules/formList/treatProcess.vue | 2 +- .../views/modules/outpatientManagement/treat/index.vue | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/page-subspecialty/views/modules/formList/treatProcess.vue b/src/page-subspecialty/views/modules/formList/treatProcess.vue index 267c241..c234bf2 100644 --- a/src/page-subspecialty/views/modules/formList/treatProcess.vue +++ b/src/page-subspecialty/views/modules/formList/treatProcess.vue @@ -139,7 +139,7 @@ 已完成(每5分钟点一次,连续点五次)
表麻: - 已完成(每5分钟点一次,连续点五次) + 已完成(每5分钟点一次,连续点三次)
diff --git a/src/page-subspecialty/views/modules/outpatientManagement/treat/index.vue b/src/page-subspecialty/views/modules/outpatientManagement/treat/index.vue index 250c370..95f14fc 100644 --- a/src/page-subspecialty/views/modules/outpatientManagement/treat/index.vue +++ b/src/page-subspecialty/views/modules/outpatientManagement/treat/index.vue @@ -84,6 +84,7 @@ :data="dataList" tooltip-effect="dark" style="width: 100%" + :cell-style="cellStyle" > @@ -315,6 +316,11 @@ export default { this.queryProjectList() }, methods: { + cellStyle(rowScope) { + if (rowScope.row.patientStatus === '400') { + return 'color:green' + } + }, reFresh() { this.pageCurrentChangeHandle(this.page) },