|
|
@@ -252,6 +252,15 @@
|
|
252
|
252
|
<img src="/static/img/icon-pay-alipay.png" class="icon">
|
|
253
|
253
|
<span>支付宝支付</span>
|
|
254
|
254
|
</div>
|
|
|
255
|
+ <div class="select">
|
|
|
256
|
+ <input type="radio" name="pay" value="alipay" class="redcheck" id="pay">
|
|
|
257
|
+ </div>
|
|
|
258
|
+ </div>
|
|
|
259
|
+ <div class="form-item">
|
|
|
260
|
+ <div class="form-text">
|
|
|
261
|
+ <img src="/static/img/icon-pay-weixin.png" class="icon">
|
|
|
262
|
+ <span>微信支付,请联系客服充值</span>
|
|
|
263
|
+ </div>
|
|
255
|
264
|
<div class="select">
|
|
256
|
265
|
<input type="radio" name="pay" value="wx" class="redcheck" id="pay">
|
|
257
|
266
|
</div>
|
|
|
@@ -263,6 +272,15 @@
|
|
263
|
272
|
<img src="/static/img/icon-pay-alipay.png" class="icon">
|
|
264
|
273
|
<span>支付宝支付</span>
|
|
265
|
274
|
</div>
|
|
|
275
|
+ <div class="select">
|
|
|
276
|
+ <input type="radio" name="pay" value="alipay" class="redcheck" id="pay">
|
|
|
277
|
+ </div>
|
|
|
278
|
+ </div>
|
|
|
279
|
+ <div class="form-item">
|
|
|
280
|
+ <div class="form-text">
|
|
|
281
|
+ <img src="/static/img/icon-pay-weixin.png" class="icon">
|
|
|
282
|
+ <span>微信支付,请联系客服充值</span>
|
|
|
283
|
+ </div>
|
|
266
|
284
|
<div class="select">
|
|
267
|
285
|
<input type="radio" name="pay" value="wx" class="redcheck" id="pay">
|
|
268
|
286
|
</div>
|
|
|
@@ -486,7 +504,7 @@
|
|
486
|
504
|
//alert(item);
|
|
487
|
505
|
});
|
|
488
|
506
|
var paytype = $(".redcheck:checked").val();
|
|
489
|
|
- if(paytype == "wx") {
|
|
|
507
|
+ if(paytype == "alipay") {
|
|
490
|
508
|
if (!navigator.userAgent.match(/MicroMessenger/i)) {
|
|
491
|
509
|
alert("请使用微信访问!");
|
|
492
|
510
|
$('.mask').hide();
|
|
|
@@ -563,6 +581,11 @@
|
|
563
|
581
|
});
|
|
564
|
582
|
}
|
|
565
|
583
|
}
|
|
|
584
|
+ } else if(paytype == "wx"){
|
|
|
585
|
+ alert("请联系客服充值!");
|
|
|
586
|
+ $('.mask').hide();
|
|
|
587
|
+ isRequesting = false;
|
|
|
588
|
+ return;
|
|
566
|
589
|
} else {
|
|
567
|
590
|
alert("请选择支付方式!");
|
|
568
|
591
|
$('.mask').hide();
|