This commit is contained in:
zzyuan 2025-01-22 10:39:22 +08:00
commit b9d449afcb
1 changed files with 7 additions and 5 deletions

View File

@ -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' })
}