Merge branch 'feature/ordersub' into release/6.0.2
Showing
1 changed file
with
7 additions
and
0 deletions
@@ -231,6 +231,13 @@ function submitOrder() { | @@ -231,6 +231,13 @@ function submitOrder() { | ||
231 | window.location.href = url; | 231 | window.location.href = url; |
232 | } else if (res.code === 409) { | 232 | } else if (res.code === 409) { |
233 | richTip.show(res.message, res.buttons); | 233 | richTip.show(res.message, res.buttons); |
234 | + } else if (res.code === 440) { | ||
235 | + dialog.showDialog({ | ||
236 | + dialogText: res.message, | ||
237 | + hasFooter: { | ||
238 | + centerBtnText: '我知道了' | ||
239 | + } | ||
240 | + }); | ||
234 | } else if (res.message) { | 241 | } else if (res.message) { |
235 | tip.show(res.message); | 242 | tip.show(res.message); |
236 | } | 243 | } |
-
Please register or login to post a comment