Commit 27f0409b authored by wildfirecode's avatar wildfirecode

1

parent 1d6c8a26
......@@ -4,16 +4,19 @@ import { showToast } from "./ctrls/toastCtrl";
export default (data?: Data, netname?: NetName) => {
if (!data) {
return showToast('网络异常\n请隔一段时间再尝试');
return showToast('活动太火爆了\n请稍后再来');
}
if (data.code == '999999999')//系统级别错误 系统异常,\n请刷新后重试。
showToast('网络异常\n请隔一段时间再尝试');
else if (data.code == '2002007013')
showToast('元宝不足哦,快去玩游戏赢元宝吧');
else if (data.code == 'E1002070002') {
showToast('游戏分数提交失败~\n如有疑问,请联系客服')
}
else if (data.code == '600005')
showToast('体力值已达上限,不可购买')
else//其他异常
showToast('网络异常\n请隔一段时间再尝试')
showToast('活动太火爆了\n请稍后再来')
}
// export default (data: Data) => {
// if (data.code == 'E999999999')
......
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