Commit 602dc804 by zhaochengxiang

评审流程详情

parent 55bdccd7
......@@ -100,8 +100,8 @@ const FC = (props) => {
},
callback: (data) => {
setWaiting(false)
if (!data?.success) {
if (data?.msg) {
if (data && !data.success) {
if (data.msg) {
const msg = (data?.msg||'').replace(RegExp("\n", "g"),"<br />")
showNotifaction('提示', msg, 5)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment