From 8a2f33075a41d0285460b7daf492a692df54bfec Mon Sep 17 00:00:00 2001 From: qzysz <16602114135@126.com> Date: Wed, 18 Dec 2024 13:45:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BA=BA=E5=91=98=E4=BF=A1=E6=81=AF=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/templates/system/meeting/meeting.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rwk-admin/src/main/resources/templates/system/meeting/meeting.html b/rwk-admin/src/main/resources/templates/system/meeting/meeting.html index 236ae81..11c72e5 100644 --- a/rwk-admin/src/main/resources/templates/system/meeting/meeting.html +++ b/rwk-admin/src/main/resources/templates/system/meeting/meeting.html @@ -83,8 +83,9 @@ var str = "0/0"; if (value && value.length > 0){ var totalInvited = value.length; // 受邀人员总数 - var signedInCount = value.filter(person => person.isSign == 1).length; // 签到人数 - str = signedInCount+"/"+totalInvited; + //提取已签到数量的数 不使用filter方法 + // var signedInCount = value.filter(person => person.isSign === 1).length; // 签到人数 + // str = signedInCount+"/"+totalInvited; } return str; }