| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
- <%@include file="/context/mytags.jsp" %>
- <!DOCTYPE html>
- <html>
- <head>
- <title>仓库档案编辑和查看页面</title>
- <t:base type="jquery,easyui,tools,DatePicker"></t:base>
- <script src="plug-in/layer/layer.js"></script>
- <link rel="stylesheet" href="online/template/ledefault/css/vendor.css">
- <link rel="stylesheet" href="online/template/ledefault/css/bootstrap-theme.css">
- <link rel="stylesheet" href="online/template/ledefault/css/bootstrap.css">
- <link rel="stylesheet" href="online/template/ledefault/css/app.css">
- <link rel="stylesheet" href="plug-in/Validform/css/metrole/style.css" type="text/css"/>
- <link rel="stylesheet" href="plug-in/Validform/css/metrole/tablefrom.css" type="text/css"/>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="warehouseController.do?doUpdate"
- tiptype="1">
- <input id="id" name="id" type="hidden" value="${entity.id }">
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- <span color="red" class="requiredIcon">*</span>仓库名称:
- </label>
- </td>
- <td class="value">
- <input id="warehouseName" name="warehouseName" type="text" style="width: 350px" maxlength="20"
- class="inputxt" datatype="*" value="${entity.warehouseName }">
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">仓库名称</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- <span color="red" class="requiredIcon">*</span>科室:
- </label>
- </td>
- <td class="value">
- <t:dictSelect field="projectId" id="projectId" type="list" dictTable="t_s_depart" dictField="id" dictText="departname" dictCondition=" where org_type != '1' " datatype="*"
- defaultVal="${entity.projectId}"
- hasLabel="false" title="科室"></t:dictSelect>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 备注:
- </label>
- </td>
- <td class="value">
- <input id="remark" name="remark" type="text" style="width: 350px" maxlength="100" class="inputxt" value="${entity.remark }">
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- </table>
- </t:formvalid>
- </body>
|