42 lines
1.0 KiB
HTML
42 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<title>转账二维码</title>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
|
<link rel="stylesheet" href="./libs/bootstrap/bootstrap.min.css?__HTML_VERSION__=3">
|
|
<link rel="stylesheet" href="./css/common.css?__HTML_VERSION__=7">
|
|
</head>
|
|
<body>
|
|
<div class="container" id="app">
|
|
<div class="qcode text-center" style="padding-top: 100px" v-html="agentInfo.pay_desc"></div>
|
|
</div>
|
|
|
|
|
|
|
|
<script src="./libs/jquery.min.js?__HTML_VERSION__=3"></script>
|
|
<script src="./libs/vue.min.js?__HTML_VERSION__=3"></script>
|
|
<script src="./libs/layer_mobile/layer.js?__HTML_VERSION__=3"></script>
|
|
<script src="./js/function.js?__HTML_VERSION__=18"></script>
|
|
<script>
|
|
new Vue(
|
|
{
|
|
el: "#app",
|
|
data: {
|
|
isLoading: true,
|
|
params: {},
|
|
agentInfo: {},
|
|
agentList: []
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
created: function () {
|
|
$.getAgentInfo(function (res) {
|
|
this.agentInfo = res;
|
|
}.bind(this))
|
|
}
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |