| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- <%@ 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="tBActivitiCostRequestController.do?doUpdate" >
- <input id="id" name="id" type="hidden" value="${tBActivitiCostRequestPage.id }"/>
- <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
- <tr>
- <td align="right">
- <label class="Validform_label">
- 用户id:
- </label>
- </td>
- <td class="value">
- <input id="userid" name="userid" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tBActivitiCostRequestPage.userid}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">用户id</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 员工名:
- </label>
- </td>
- <td class="value">
- <input id="realName" name="realName" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tBActivitiCostRequestPage.realName}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">员工名</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 所属部门id:
- </label>
- </td>
- <td class="value">
- <input id="departId" name="departId" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tBActivitiCostRequestPage.departId}'/>
- <span class="Validform_checktip"></span>
- <label class="Validform_label" style="display: none;">所属部门id</label>
- </td>
- </tr>
- <tr>
- <td align="right">
- <label class="Validform_label">
- 所属部门名称:
- </label>
- </td>
- <td class="value">
- <input id="depName" name="depName" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tBActivitiCostRequestPage.depName}'/>
- <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="costType" name="costType" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tBActivitiCostRequestPage.costType}'/>
- <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="expectMoney" name="expectMoney" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tBActivitiCostRequestPage.expectMoney}'/>
- <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="summary" name="summary" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${tBActivitiCostRequestPage.summary}'/>
- <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" >
- <textarea id="remark" style="width:600px;" class="inputxt" rows="6" name="remark" ignore="ignore" >${tBActivitiCostRequestPage.remark}</textarea>
- <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/cost/activiti/costrequest/tBActivitiCostRequest.js"></script>
|