card-manage.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8"/>
  5. <meta name="author" content=""/>
  6. <meta name="description" content=""/>
  7. <meta name="keywords" content="扫码支付,线上投币,运营数据,物联网"/>
  8. <meta name="format-detection" content="telephone=no,email=no"/>
  9. <meta name="viewport"
  10. content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"/>
  11. <meta http-equiv="pragma" content="no-cache">
  12. <meta http-equiv="cache-control" content="no-cache">
  13. <meta http-equiv="expires" content="0">
  14. <title>实体卡管理</title>
  15. <link rel="stylesheet" href="https://cdn.washpayer.com/components/lib/mui.min.css"/>
  16. <link rel="stylesheet" href="../components/custom/css/common.css"/>
  17. <link rel="stylesheet" href="/app/css/xyf.common.min.css">
  18. <style>
  19. </style>
  20. </head>
  21. <body>
  22. <ul class="mui-table-view custom-top account-bd ">
  23. <li class="mui-table-view-cell">
  24. <a href="bind-id.html" class="mui-navigate-right">
  25. <i class="iconfont icon-wechat c-wechat mui-pull-left"></i>
  26. 绑定微信
  27. </a>
  28. </li>
  29. <li class="mui-table-view-cell">
  30. <a href="/agent/index.html#/card/edit" class="mui-navigate-right">
  31. <i class="iconfont icon-card c-blue mui-pull-left"></i>
  32. 批量录入实体卡
  33. </a>
  34. </li>
  35. </ul>
  36. <script src="https://cdn.washpayer.com/components/lib/mui.min.js"></script>
  37. <script src="https://cdn.washpayer.com/components/lib/jquery.min.js"></script>
  38. <script src="/components/custom/js/common.js"></script>
  39. <script src="/app/js/xyf.common.js"></script>
  40. <script>
  41. sendRequest({
  42. url: "/agent/wechat/getBindInfo",
  43. type: "get",
  44. data: {'bindType': 'bindCard'},
  45. contentType: "json",
  46. success: function (res) {
  47. if (res.result == 1) {
  48. var obj = res.payload;
  49. if (obj.bound) {
  50. location.href = '/agent/index.html#/card'
  51. } else {
  52. location.href = 'bind-id.html'
  53. }
  54. } else {
  55. mui.toast(res.description);
  56. }
  57. }
  58. });
  59. </script>
  60. </body>
  61. </html>