first commit
This commit is contained in:
47
bin/WebRoot/jsp/material/materialUnitView.jsp
Normal file
47
bin/WebRoot/jsp/material/materialUnitView.jsp
Normal file
@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
||||
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<jsp:include page="../inc.jsp"></jsp:include>
|
||||
<script type="text/javascript">
|
||||
$(function() {
|
||||
// $('#role').combobox({
|
||||
// url:ext.contextPath + '/user/getJsonRole.do',
|
||||
// valueField:'id',
|
||||
// textField:'name',
|
||||
// required:true,validType:'isBlank',
|
||||
// multiple:true,
|
||||
// editable:false
|
||||
// });
|
||||
});
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<form method="post" class="form">
|
||||
<input type="hidden" name="id" value="${materialUnit.id }"/>
|
||||
<table class="table">
|
||||
<tr>
|
||||
<th>单位</th>
|
||||
<td>${materialUnit.unit }</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>状态</th>
|
||||
<td>
|
||||
<c:if test="${materialUnit.status=='1'}">启用</c:if>
|
||||
<c:if test="${materialUnit.status=='0'}">禁用</c:if>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>备注</th>
|
||||
<td>
|
||||
${materialUnit.remark }
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user