| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <%@ page language="java" contentType="text/html;charset=GBK"
- pageEncoding="GBK"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
- <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>查看数据字典</title>
- <link
- href="${pageContext.request.contextPath }/liger/lib/ligerUI/skins/${sessionScope.css}/css/ligerui-all.css"
- rel="stylesheet" type="text/css" />
- <link href="/shares/xheditor/xheditor-1.1.14/demos/common.css"
- rel="stylesheet" type="text/css" media="screen" />
-
- <link href="/shares/css/yw/tms/task.css" rel="stylesheet"
- type="text/css" />
- <link href="${pageContext.request.contextPath }/main.css"
- rel="stylesheet" type="text/css" />
- <script
- src="${pageContext.request.contextPath }/liger/lib/jquery/jquery-1.3.2.min.js"
- type="text/javascript"></script>
-
- <script
- src="${pageContext.request.contextPath }/liger/lib/ligerUI/js/core/base.js"
- type="text/javascript"></script>
- <style type="text/css">
- .l-table-edit-text {
- width: 100px;
- font-weight: bold;
- color: #cc000
- }
-
- .default-select {
- width: 500px;
- height: 22px;
- line-height: 22px;
- }
-
- .short-select {
- width: 273px;
- height: 22px;
- line-height: 22px;
- }
-
- .default-text {
- width: 270px;
- height: 22px;
- line-height: 22px
- }
-
- .short-text {
- width: 270px;
- line-height: 22px;
- height: 22px;
- }
- .l-text{
- width: 270px;
- line-height: 22px;
- height: 22px;
- }
- .text {
- height: 22px;
- line-height: 22px;
- margin-right: 10px;
- display: inline-block;
- margin-left: 1px
- }
-
- .title {
- font-size: 20px;
- font-weight: bold;
- padding-bottom: 20px;
- padding-left: 5px;
- border-bottom: 1px solid #ededed;
- vertical-align: middle;
- }
- .l-table-edit-td{
- width:270px;
- }
- .l-table-edit-text{
- width:89px;
- }
- .forum-container-2 .l-table-edit-text{
- width:99px;
- }
- .projectTable{margin: 5px}
- .projectTable tr{height: 25px; padding-bottom: 2px; margin: 10px auto}
- .projectTable .left-text {width: 80px; }
- </style>
- </head>
- <body>
- <div>
- <div class="forum-container-2" style="overflow: hidden;">
- <table border="0" cellspacing="1" cellpadding="0" style="border: 1px solid #ededed;">
- <thead>
- <tr>
- <th colspan="4">
- <div class="l-table-edit line">数据字典信息</div>
- </th>
- </tr>
- </thead>
- <tr>
- <td class="l-table-edit-text">父类名称:</td>
- <td class="l-table-edit-td" colspan="3">
- ${map.p_dname }
- </td>
- </tr>
- <tr>
- <td class="l-table-edit-text">名称:</td>
- <td class="l-table-edit-td" colspan="3">
- ${map.dname }
- </td>
- </tr>
- <tr>
- <td class="l-table-edit-text">值:</td>
- <td class="l-table-edit-td" colspan="3">
- ${map.dvalue }
- </td>
- </tr>
- <tr>
- <td class="l-table-edit-text">代码:</td>
- <td class="l-table-edit-td" colspan="3">
- ${map.code }
- </td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|