example_home_patent.jsp
1.66 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
<%--
Created by IntelliJ IDEA.
User: litao
Date: 16-8-2
Time: 下午3:16
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>国内专利</title>
<link rel="stylesheet" type="text/css" href="css/example_home_patent.css"/>
<script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
</head>
<body>
<jsp:include page="include/header.jsp"/>
<div class="patent-wrap">
<div class="patent-top">
<span>提交案件</span>
</div>
<div class="patent-table">
<div class="patent-check">
<span>请核对案件信息</span>
</div>
<div class="patent-content">
<table cellspacing="0" cellpadding="0" class="patent-heder">
<tbody>
<tr>
<th class="tcontent">案件编号</th>
<th class="tcontent">案件类型</th>
<th class="tcontent">案件名称</th>
<th class="tcontent">费用(元)</th>
</tr>
</tbody>
</table>
<table cellspacing="0" cellpadding="0" style="border-top:0px;">
<tbody>
<tr class="tr-generic">
<td class="tcontent">P123123123</td>
<td class="tcontent">发明专利</td>
<td class="tcontent">暂无名称</td>
<td class="tcontent">2900.00</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</body>
</html>