From 2290de96f4dd007d068ffc6a9259367788770c2f Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Wed, 21 Jan 2026 19:17:40 +0800 Subject: [PATCH] =?UTF-8?q?2026-01-21=20=E6=8E=A5=E5=8F=A3=E6=97=A5?= =?UTF-8?q?=E5=BF=97=E7=AE=A1=E7=90=86=E5=92=8C=E7=B3=BB=E7=BB=9F=E6=97=A5?= =?UTF-8?q?=E5=BF=97=E7=AE=A1=E7=90=86=E9=A1=B5=E9=9D=A2=201=E3=80=81?= =?UTF-8?q?=E6=89=8B=E5=8A=A8=E9=87=8D=E8=AF=95=E6=97=B6=E8=A6=81=E6=A0=A1?= =?UTF-8?q?=E9=AA=8CneedRetryFlag=20=E4=B8=BAY=E7=9A=84=E5=8D=95=E6=8D=AE?= =?UTF-8?q?=E6=89=8D=E8=83=BD=E6=89=8B=E5=8A=A8=E9=87=8D=E8=AF=95=EF=BC=9B?= =?UTF-8?q?=202=E3=80=81=E6=89=8B=E5=8A=A8=E9=87=8D=E8=AF=95=E6=97=B6?= =?UTF-8?q?=E8=A6=81=E5=A2=9E=E5=8A=A0=E4=B8=80=E4=B8=AA=E6=A0=A1=E9=AA=8C?= =?UTF-8?q?=EF=BC=9A=E4=BC=A0=E8=BE=93=E7=8A=B6=E6=80=81=EF=BC=88synced=5F?= =?UTF-8?q?flag=EF=BC=89=E5=BF=85=E9=A1=BB=E6=98=AF=E2=80=9C=E5=BE=85?= =?UTF-8?q?=E4=BC=A0=E8=BE=93=E2=80=9D=E4=B8=94=E4=BC=A0=E8=BE=93=E6=B6=88?= =?UTF-8?q?=E6=81=AF=EF=BC=88synced=5Ferror=5Fmsg=EF=BC=89=E5=BF=85?= =?UTF-8?q?=E9=A1=BB=E6=9C=89=E5=80=BC=EF=BC=8C=E6=89=8D=E5=8F=AF=E4=BB=A5?= =?UTF-8?q?=E9=87=8D=E8=AF=95=203=E3=80=81=E6=89=8B=E5=8A=A8=E9=87=8D?= =?UTF-8?q?=E8=AF=95=E6=88=90=E5=8A=9F=E5=90=8E=E8=A6=81=E5=B0=86needRetry?= =?UTF-8?q?Flag=20=E6=94=B9=E4=B8=BAN=EF=BC=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/sys/interface/interfaceLog.vue | 4 ++-- src/views/modules/sys/interface/systemLog.vue | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/modules/sys/interface/interfaceLog.vue b/src/views/modules/sys/interface/interfaceLog.vue index 123f534..d1330ed 100644 --- a/src/views/modules/sys/interface/interfaceLog.vue +++ b/src/views/modules/sys/interface/interfaceLog.vue @@ -517,8 +517,8 @@ export default { return } - // 校验needRetryFlag必须为Y - const invalidItems = this.dataListSelections.filter(item => item.needRetryFlag !== 'Y') + // 校验needRetryFlag必须为1(允许重试) + const invalidItems = this.dataListSelections.filter(item => item.needRetryFlag !== '1' && item.needRetryFlag !== 1) if (invalidItems.length > 0) { this.$message.warning('存在已传输的记录!') return diff --git a/src/views/modules/sys/interface/systemLog.vue b/src/views/modules/sys/interface/systemLog.vue index dc56cef..f073d85 100644 --- a/src/views/modules/sys/interface/systemLog.vue +++ b/src/views/modules/sys/interface/systemLog.vue @@ -517,8 +517,8 @@ export default { return } - // 校验needRetryFlag必须为Y - const invalidItems = this.dataListSelections.filter(item => item.needRetryFlag !== 'Y') + // 校验needRetryFlag必须为1(允许重试) + const invalidItems = this.dataListSelections.filter(item => item.needRetryFlag !== '1' && item.needRetryFlag !== 1) if (invalidItems.length > 0) { this.$message.warning('存在已传输的记录!') return