index.html
2.78 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
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="user-scalable=0, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<meta content="telephone=no" name="format-detection" />
<meta content="black" name="apple-mobile-web-app-status-bar-style" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>地利收银台</title>
<!-- css -->
<link rel="stylesheet" type="text/css" href="../css/style/common.css">
<!-- <link rel="stylesheet" type="text/css" href="../css/style/index.css"> -->
<!-- base seajs -->
<script type="text/javascript" src="http://static.nong12.com/static/newStatic/common/js/base/sea.js"></script>
<!-- base jquery -->
<script type="text/javascript" src="http://static.nong12.com/static/newStatic/common/js/base/jquery-2.1.3.min.js"></script>
</head>
<body>
<!-- 主体 -->
<div class="m-page">
<header class="m-header">
<div class="head">
<a class="m-icon lt-bar icon-back">返回</a>
<h1>地利收银台</h1>
</div>
</header>
<section class="m-content">
<ul class="m-table-view">
<li class="cell">
<span class="title">应付金额:<span class="col-f60">10000.00</span>元</span>
</li>
</ul>
<ul class="m-table-view">
<li class="cell">
<span class="title">付款方式</span>
</li>
<li class="cell">
<span class="title">
<img src="../images/yu.png" width="35" heught="35">
<span>
余额支付
<p class="tips">可用10000.00元</p>
</span>
</span>
<input type="radio" class="m-radio acc" checked name="payMethod">
</li>
<li class="cell">
<span class="title">
<img src="../images/zhi.png" width="35" heught="35">
<span>
支付宝移动快捷支付
<p class="tips">需要安装支付宝快捷支付控件</p>
</span>
</span>
<input type="radio" class="m-radio acc" name="payMethod">
</li>
<li class="cell">
<span class="title">
<img src="../images/yh.png" width="35" heught="35">
<span>
银行卡支付
<p class="tips">支出借记卡、贷记卡,无需开通网银</p>
</span>
</span>
<input type="radio" class="m-radio acc" name="payMethod">
</li>
</ul>
<div class="btn-bar">
<a href="#" class="m-btn btn-warning btn-block">立即付款</a>
</div>
</section>
</div>
<!-- config -->
<script type="text/javascript" src="../js/javascript/common/config.js"></script>
</body>
</html>