toPayment.js 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. // import '../css/bootstrap.less';
  2. import '../css/public.css';
  3. import '../css/toPayment.less';
  4. $(function () {
  5. var paymentNumber = 9999.00;
  6. var paymentBank = null;
  7. $('#payNumber').html(paymentNumber);
  8. $('.payment-type-select li').on('click', function () {
  9. $(this).addClass('active').siblings().removeClass('active');
  10. $("#toB2CList").hide();
  11. $("#toB2BList").hide();
  12. $("#toWXZF").hide();
  13. var payType = this.dataset.paytype;
  14. switch (payType) {
  15. case 'b2b':
  16. $("#toB2BList").show();
  17. paymentBank = 'cmb'
  18. break;
  19. case 'b2c':
  20. $("#toB2CList").show();
  21. paymentBank = 'icbc'
  22. break;
  23. case 'wx':
  24. $("#toWXZF").show();
  25. break;
  26. }
  27. })
  28. $('.payment-bank-bankList li').on('click', function () {
  29. $(this).addClass('active').siblings().removeClass('active');
  30. paymentBank = this.dataset.bankname;
  31. })
  32. })