pay.jsp
5.73 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>科路得</title>
<link rel="stylesheet" type="text/css" href="/css/pay.css">
</head>
<body>
<jsp:include page="/include/header.jsp" flush="true"/>
<div class="pay-wrap">
<div>
<div class="location-wrap">
<h1>
<span>缴纳费用</span>
</h1>
</div>
<div class="pay-detail-wrap">
<div class="register-info case-list">
<h2>立案信息</h2>
<table>
<thead>
<tr class="table-head">
<th>案件类型</th>
<th>案件名称</th>
<th>案件编号</th>
<th>费用</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span>发明专利</span>
</div>
</td>
<td>
<span>暂无名称</span>
</td>
<td>
GG1603754CA
</td>
<td>
<span>3800</span>
</td>
</tr>
<tr class="case-list-item-bottom-tr">
<td colspan="4">
<span>合同号:<span>466686664696562</span></span>
<span>立案时间:<span>2016-05-13 22:40:53</span></span>
</td>
</tr>
<tr>
<td>
<span>发明专利</span>
</div>
</td>
<td>
<span>暂无名称</span>
</td>
<td>
GG1603754CA
</td>
<td>
<span>3800</span>
</td>
</tr>
<tr class="case-list-item-bottom-tr">
<td colspan="4">
<span>合同号:<span>466686664696562</span></span>
<span>立案时间:<span>2016-05-13 22:40:53</span></span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="recev-addr">
<h2>收件信息</h2>
<form class="info-form">
<div>
<input type="checkbox" value="广东省广州市萝岗区伴河路92号 (李强收)">
<label for="">广东省广州市萝岗区伴河路92号 (<span class="user-name">李强</span> 收) </label>
<span class="comment">默认地址</span>
<div class="operate">
<span>编辑</span>
<span>删除</span>
<span>设为默认地址</span>
</div>
</div>
<div class="selected">
<input type="checkbox" value="广东省广州市萝岗区伴河路92号 (李强收) 18354267890">
<label for="">广东省广州市萝岗区伴河路92号 (<span class="user-name">李强</span> 收) </label>
<span class="comment">18354267890</span>
<div class="operate hidden">
<span>编辑</span>
<span>删除</span>
<span>设为默认地址</span>
</div>
</div>
<div>
<input type="checkbox" value="广东省广州市萝岗区伴河路92号 (李强收) 18354267890">
<label for="">广东省广州市萝岗区伴河路92号 (<span class="user-name">李强</span> 收) </label>
<span class="comment">18354267890</span>
<div class="operate hidden">
<span>编辑</span>
<span>删除</span>
<span>设为默认地址</span>
</div>
</div>
</form>
<div class="add-info add-addr">新增其他地址</div>
</div>
<div class="invoice-info">
<h2>发票信息</h2>
<form class="info-form">
<div>
<input type="checkbox" value="广东省广州市萝岗区伴河路92号 (李强收)">
<label for="">
<span>一米阳光科技有限公司 </span>
</label>
<span class="property">单位</span>
<span class="invoice-type">普通发票</span>
<span class="comment">默认发票</span>
<div class="operate hidden">
<span>编辑</span>
<span>删除</span>
<span>设为默认发票</span>
</div>
</div>
<div>
<input type="checkbox" value="广东省广州市萝岗区伴河路92号 (李强收)">
<label for="">
<span>一米阳光科技有限公司 </span>
</label>
<span class="property">单位</span>
<span class="invoice-type">普通发票</span>
<div class="operate hidden">
<span>编辑</span>
<span>删除</span>
<span>设为默认发票</span>
</div>
</div>
</form>
<div class="add-info add-addr">新增其他地址</div>
</div>
<div class="clearing">
<div>2个案件,总费用 : ¥3800.00</div>
<div class="total-wrap">应付总额:<span class="total">¥7600</span></div>
<div><span class="submit-btn">去结算</span></div>
</div>
</div>
</div>
</div>
<jsp:include page="/include/footer.jsp" flush="true"/>
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="/js/pay.js"></script>
</body>
</html>