| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <%@ 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"></t:base>
- <meta name="description" content="">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <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"/>
- <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?doAdd">
- <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="*">
- <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">
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">备注</label>
- </td>
- </tr>
- </table>
- </t:formvalid>
- </body>
|