order_detail.jsp 1.03 KB
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ 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/order_detail.css">
</head>

<body>
<jsp:include page="/include/header.jsp" flush="true"/>
<div class="case-manage-wrap">
    <div class="content">
        <div class="location-wrap">
            <span>个人中心</span>
            <i class="row-right"></i>
            <i class="row-right"></i>
            <span class="current">案件管理</span>
        </div>
        <div class="main-wrap">
            <jsp:include page="/include/user_side.jsp" flush="true"/>
            <div class="case-content">
                <p>订单ID: ${order.id}</p>
            </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>
</body>
</html>