cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<link rel="stylesheet" type="text/css" href="${common_static}/static/wechat/css/normalize.css">
<link rel="stylesheet" type="text/css" href="${common_static}/static/wechat/css/weixin.css">
<script type="text/javascript" src="${common_static}/static/script/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="${common_static}/static/script/jquery.util.js"></script>
<script type="text/javascript" src="${common_static}/static/script/jquery.morePagination.js"></script>
<script type="text/javascript" src="${common_static}/static/script/highcharts/highcharts.js"></script>
<script type="text/javascript" src="${common_static}/static/script/highcharts.util.js"></script>
<script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.0.0.js"></script>
<script type="text/javascript" src="${common_static}/static/wechat/js/tip.js"></script>
<script type="text/javascript">
//加载效果
function loading($dom) {
    if(!$dom) {
        $dom = $("body");
    }
    $dom.html("<div class='loading' id='loading'><img src='${common_static}/static/wechat/images/loading.gif' /></div>");
}
 
//加载完成
function loaded($dom) {
    if(!$dom) {
        $dom = $("body");
    }
    $("#loading").remove();
}
</script>