index.html
2.2 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<include file="public@head_common"/>
<link rel="stylesheet" type="text/css" href="__TMPL__/public/mobile/css/pay/my_pay.css" />
<link rel="stylesheet" type="text/css" href="__TMPL__/public/mobile/css/augly.css" />
<title>我要支付</title>
<style type="text/css">
html,
body {
height: auto;
background-color: #FFFFFF;
}
</style>
</head>
<body>
<div class="header">
<div class="return">
<span class="back_href">
<i class="iconfont icon-jiantou-copy"></i>返回
</span>
</div>
我要支付
</div>
<div class="header_place"></div>
<!--banner-->
<div class="banner">
<img src="{:cmf_get_asset_url($slide['image'])}" />
</div>
<!--已收到订单确认码-->
<div class="get_order">
<p class="order_text">已收到订单确认码</p>
<p class="order_btn">点此支付</p>
</div>
<div class="buy_tiger">
<p class="order_text">我要订购巧虎</p>
<p class="buy_btn">联系客服</p>
</div>
<div class="sale_inlet">销售人员入口<i class="iconfont icon-jiantouyou"></i></div>
<!--mask-->
<div class="mask" style="display: ;">
<div class="call_popup">
<div class="call_img">
<img src="__TMPL__/public/mobile/images/tucengt.png" />
</div>
<div class="call_text">
<img src="__TMPL__/public/mobile/images/closeimg.png" class="change_close close_popup"/>
<p class="call_num">{$site_info.site_mobile}</p>
<p class="call_tit">- 客服电话 -</p>
<p class="change_btn close_popup">
<a href="tel:400-110-7575">确认</a>
</p>
</div>
</div>
</div>
<include file="public@footer"/>
<script type="text/javascript">
$('.close_popup').click(function(){
$('.mask').hide()
})
$('.buy_btn').click(function(){
$('.mask').show()
});
$('.order_btn').click(function(){
window.location.href = "{:url('portal/Order/to_pay')}";
});
$('.sale_inlet').click(function(){
window.location.href = "{:url('portal/MemberSales/index')}";
})
</script>
</body>
</html>