| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | <!DOCTYPE html><html><head>    <meta charset="utf-8"/>    <meta name="author" content=""/>    <meta name="description" content=""/>    <meta name="keywords" content="扫码支付,线上投币,运营数据,物联网"/>    <meta name="format-detection" content="telephone=no,email=no"/>    <meta name="viewport"          content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no"/>    <meta http-equiv="pragma" content="no-cache">    <meta http-equiv="cache-control" content="no-cache">    <meta http-equiv="expires" content="0">    <title>实体卡管理</title>    <link rel="stylesheet" href="https://cdn.washpayer.com/components/lib/mui.min.css"/>    <link rel="stylesheet" href="../components/custom/css/common.css"/>    <link rel="stylesheet" href="/app/css/xyf.common.min.css">    <style>    </style></head><body><ul class="mui-table-view custom-top account-bd ">    <li class="mui-table-view-cell">        <a href="bind-id.html" class="mui-navigate-right">            <i class="iconfont icon-wechat c-wechat mui-pull-left"></i>            绑定微信        </a>    </li>    <li class="mui-table-view-cell">        <a href="/agent/index.html#/card/edit" class="mui-navigate-right">            <i class="iconfont icon-card c-blue mui-pull-left"></i>            批量录入实体卡        </a>    </li></ul><script src="https://cdn.washpayer.com/components/lib/mui.min.js"></script><script src="https://cdn.washpayer.com/components/lib/jquery.min.js"></script><script src="/components/custom/js/common.js"></script><script src="/app/js/xyf.common.js"></script><script>    sendRequest({        url: "/agent/wechat/getBindInfo",        type: "get",        data: {'bindType': 'bindCard'},        contentType: "json",        success: function (res) {            if (res.result == 1) {                var obj = res.payload;                if (obj.bound) {                    location.href = '/agent/index.html#/card'                } else {                    location.href = 'bind-id.html'                }            } else {                mui.toast(res.description);            }        }    });</script></body></html>
 |