warehouse-add.jsp 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <%@ page language="java" import="java.util.*" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
  2. <%@include file="/context/mytags.jsp" %>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <title>仓库档案新增页面</title>
  7. <t:base type="jquery,easyui,tools"></t:base>
  8. <meta name="description" content="">
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. <link rel="stylesheet" href="online/template/ledefault/css/vendor.css">
  11. <link rel="stylesheet" href="online/template/ledefault/css/bootstrap-theme.css">
  12. <link rel="stylesheet" href="online/template/ledefault/css/bootstrap.css">
  13. <link rel="stylesheet" href="online/template/ledefault/css/app.css">
  14. <link rel="stylesheet" href="plug-in/Validform/css/metrole/style.css" type="text/css"/>
  15. <link rel="stylesheet" href="plug-in/Validform/css/metrole/tablefrom.css" type="text/css"/>
  16. <link rel="stylesheet" href="plug-in/Validform/css/metrole/tablefrom.css" type="text/css"/>
  17. </head>
  18. <body>
  19. <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="warehouseController.do?doAdd">
  20. <input id="id" name="id" type="hidden" value="${entity.id }">
  21. <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
  22. <tr>
  23. <td align="right">
  24. <label class="Validform_label">
  25. <span color="red" class="requiredIcon">*</span>仓库名称:
  26. </label>
  27. </td>
  28. <td class="value">
  29. <input id="warehouseName" name="warehouseName" type="text" style="width: 350px" maxlength="20"
  30. class="inputxt" datatype="*">
  31. <span class="Validform_checktip"></span>
  32. <label class="Validform_label" style="display: none;">仓库名称</label>
  33. </td>
  34. </tr>
  35. <tr>
  36. <td align="right">
  37. <label class="Validform_label">
  38. <span color="red" class="requiredIcon">*</span>科室:
  39. </label>
  40. </td>
  41. <td class="value">
  42. <t:dictSelect field="projectId" id="projectId" type="list" dictTable="t_s_depart" dictField="id" dictText="departname" dictCondition=" where org_type != '1' " datatype="*"
  43. defaultVal="${entity.projectId}"
  44. hasLabel="false" title="科室"></t:dictSelect>
  45. </td>
  46. </tr>
  47. <tr>
  48. <td align="right">
  49. <label class="Validform_label">
  50. 备注:
  51. </label>
  52. </td>
  53. <td class="value">
  54. <input id="remark" name="remark" type="text" style="width: 350px" maxlength="100" class="inputxt">
  55. <span class="Validform_checktip"></span>
  56. <label class="Validform_label" style="display: none;">备注</label>
  57. </td>
  58. </tr>
  59. </table>
  60. </t:formvalid>
  61. </body>