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; }