| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <%@ 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 type="text/javascript">
- //编写自定义JS代码
- </script>
- </head>
- <body>
- <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="clothingUserController.do?doUpdate" beforeSubmit="setEditable">
- <input id="id" name="id" type="hidden" value="${clothingUserPage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 服装名称:
- </label>
- </td>
- <td class="value">
- <input id="clothingname" name="clothingname" type="text" style="width: 150px" class="inputxt" ignore="checked" value='${clothingUserPage.clothingname}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">服装名称</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 服装类型:
- </label>
- </td>
- <td class="value">
- <t:dictSelect field="type" type="list" typeGroupCode="clothingtype" defaultVal="${clothingUserPage.type}" hasLabel="false" title="服装类型" ></t:dictSelect>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">服装类型</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 计量单位:
- </label>
- </td>
- <td class="value">
- <t:dictSelect field="unit" type="list" typeGroupCode="metering_calcu_unit" defaultVal="${clothingUserPage.unit}" hasLabel="false" title="计量单位" ></t:dictSelect>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">计量单位</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 数量:
- </label>
- </td>
- <td class="value">
- <input id="quantity" name="quantity" type="text" style="width: 150px" class="inputxt" datatype="n" ignore="ignore" value='${clothingUserPage.quantity}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">数量</label>
- </td>
- </tr>
-
- </table>
- </t:formvalid>
- </body>
- <script src = "webpage/cn/com/lzt/clothing/user/clothingUser.js"></script>
|