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