修改充值,增加门店地图显示

This commit is contained in:
Gao xiaosong
2020-06-27 20:09:46 +08:00
parent d2d9af95cb
commit 841c40762d
12 changed files with 272 additions and 131 deletions

View File

@ -87,7 +87,7 @@ export function payOrderHandle(orderId, type, from) {
case "EXTEND_ORDER":
case "PAY_ERROR":
case "PAY_DEFICIENCY":
dialog.toast({ mes: res.msg });
uni.showToast({ title: res.msg, icon: 'none', duration: 2000 });
reject(data);
break;
case "SUCCESS":
@ -108,7 +108,9 @@ export function payOrderHandle(orderId, type, from) {
})
.catch(err => {
uni.hideLoading()
dialog.toast({ mes: "订单支付失败" });
uni.showToast({
title: '订单支付失败', icon: 'none', duration: 2000
});
});
});
}