From 628e1dfc4d8ab6014293be17effa4549b9e2eefa Mon Sep 17 00:00:00 2001 From: ywyonui Date: Mon, 22 Sep 2025 13:08:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=B5=81=E7=A8=8B=E5=B1=95?= =?UTF-8?q?=E7=A4=BA=E7=9A=84=E6=95=B0=E9=87=8F=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/LcglSp/index.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/LcglSp/index.vue b/src/components/LcglSp/index.vue index d50c007..f0632f4 100644 --- a/src/components/LcglSp/index.vue +++ b/src/components/LcglSp/index.vue @@ -28,7 +28,7 @@ - 审批人 + 审批人({{ sprSpList.length || 0 }}) @@ -54,9 +54,9 @@ - 抄送人 + 抄送人({{ csrSpList.length || 0 }}) - + {{ csr.userName }} {{ csr.deptName }} @@ -76,7 +76,7 @@ - 操作记录 + 操作记录({{ logList.length || 0 }}) @@ -153,7 +153,7 @@ const csrExpanded = ref(false); const logExpanded = ref(false); // 计算属性:显示的抄送人列表 -const displayedcsrList = computed(() => { +const displayedCsrList = computed(() => { if (csrExpanded.value || csrSpList.value.length <= 2) { return csrSpList.value; }