Merge branch 'master' of http://192.168.0.75:3000/bonus/bonus-material-app
This commit is contained in:
commit
b9d449afcb
|
|
@ -81,11 +81,13 @@ const pass = () => {
|
|||
console.log(param)
|
||||
innerVerify(param).then(res => {
|
||||
console.log(res)
|
||||
if(res.code==200){
|
||||
uni.showToast({ title: '验收成功', icon: 'none' })
|
||||
uni.navigateBack({
|
||||
delta: 1 // 返回到已存在的页面
|
||||
});
|
||||
if (res.code == 200) {
|
||||
uni.showToast({ title: res.msg, icon: 'none' })
|
||||
setTimeout(() => {
|
||||
uni.navigateBack({
|
||||
delta: 1 // 返回到已存在的页面
|
||||
});
|
||||
}, 500)
|
||||
}else{
|
||||
uni.showToast({ title: res.msg, icon: 'none' })
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue