example_home_patent.jsp 1.66 KB
<%--
  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>