From 6e97cd4825dacac2d06625489901d497d3ad3abb Mon Sep 17 00:00:00 2001 From: wyw <571921741@qq.com> Date: Tue, 26 May 2026 16:41:48 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9F=B9=E8=AE=AD=E7=AD=BE=E5=88=B0=20?= =?UTF-8?q?=E5=A6=82=E6=9E=9C=E6=9C=89=E7=AD=BE=E5=88=B0=E5=A4=B1=E8=B4=A5?= =?UTF-8?q?=20=E5=81=9A=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/CustomPages/SE/SE013ShowPrint.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/CustomPages/SE/SE013ShowPrint.js b/src/components/CustomPages/SE/SE013ShowPrint.js index bab4e22..11838d6 100644 --- a/src/components/CustomPages/SE/SE013ShowPrint.js +++ b/src/components/CustomPages/SE/SE013ShowPrint.js @@ -98,11 +98,14 @@ class SE013ShowPrint extends React.Component { type: 'app/getDataByPost', url: 'SE/SETrainNotify/TrainPersonStatus', payload: json, + onlyData: false, onComplete: (ret) => { - if (ret) { + if (ret.Data) { message.success('提交成功!'); - this.BtnClose(); + } else { + message.error(ret.ErrorMessage); } + this.BtnClose(); } }) }