提交 a6488c3c 编写于 作者: DCloud_iOS_WZT's avatar DCloud_iOS_WZT 提交者: DCloud-WZF

调整 get-univerify-manager示例 规避showModal弹出问题

上级 28970e62
......@@ -29,11 +29,15 @@
},
fail: (err : PreLoginFail) => {
console.error("pre login fail => " + JSON.stringify(err));
uni.showModal({
// uni.showModal({
// title: '预登录失败',
// content: JSON.parseObject(err.cause?.cause?.message ?? "")?.getString("errorDesc") ?? err.errMsg,
// showCancel: false
// });
uni.showToast({
title: '预登录失败',
content: JSON.parseObject(err.cause?.cause?.message ?? "")?.getString("errorDesc") ?? err.errMsg,
showCancel: false
});
position: 'bottom'
})
}
} as PreLoginOptions);
},
......@@ -53,11 +57,15 @@
},
fail: (err : PreLoginFail) => {
console.error("pre login fail => " + JSON.stringify(err));
uni.showModal({
// uni.showModal({
// title: '预登录失败',
// content: JSON.parseObject(err.cause?.cause?.message ?? "")?.getString("errorDesc") ?? err.errMsg,
// showCancel: false
// });
uni.showToast({
title: '预登录失败',
content: JSON.parseObject(err.cause?.cause?.message ?? "")?.getString("errorDesc") ?? err.errMsg,
showCancel: false
});
position: 'bottom'
})
}
} as PreLoginOptions);
}
......@@ -105,11 +113,15 @@
},
fail: (err : LoginFail) => {
console.error("login fail => " + err);
uni.showModal({
// uni.showModal({
// title: '登录失败',
// content: JSON.parseObject(err.cause?.cause?.message ?? "")?.getString("errorDesc") ?? err.errMsg,
// showCancel: false
// });
uni.showToast({
title: '登录失败',
content: JSON.parseObject(err.cause?.cause?.message ?? "")?.getString("errorDesc") ?? err.errMsg,
showCancel: false
});
position: 'bottom'
})
}
} as LoginOptions);
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册