Commit 602dc804 by zhaochengxiang

评审流程详情

parent 55bdccd7
...@@ -100,8 +100,8 @@ const FC = (props) => { ...@@ -100,8 +100,8 @@ const FC = (props) => {
}, },
callback: (data) => { callback: (data) => {
setWaiting(false) setWaiting(false)
if (!data?.success) { if (data && !data.success) {
if (data?.msg) { if (data.msg) {
const msg = (data?.msg||'').replace(RegExp("\n", "g"),"<br />") const msg = (data?.msg||'').replace(RegExp("\n", "g"),"<br />")
showNotifaction('提示', msg, 5) 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