From 0f7cf300475c8b075d58b95c89ffdc350b6521d5 Mon Sep 17 00:00:00 2001 From: "shengwen.chen" Date: Wed, 17 Sep 2025 15:40:59 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=BC=E5=AE=B9=E6=89=8B=E6=9C=AF=E8=BF=87?= =?UTF-8?q?=E6=BB=A4=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/scheduleList/index.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/scheduleList/index.vue b/src/views/scheduleList/index.vue index 0ba9b95..8682416 100644 --- a/src/views/scheduleList/index.vue +++ b/src/views/scheduleList/index.vue @@ -152,7 +152,7 @@ export default { this.patientList = []; if (res['Data']['Data']['length']) { // 过滤结束时间 - const deadline = dayjs().valueOf() - (60 * this.stayTime * 1000); + const deadline = dayjs(this.serverTimeStamp).valueOf() - (60 * this.stayTime * 1000); res['Data']['Data'] = res['Data']['Data'].filter(item => { if (item['ProcStatus'] == 35 && item['OutRoomDateTime']) { return dayjs(item['OutRoomDateTime']).valueOf() > deadline