| 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="projectPostGeneralController.do?doUpdate" >
- <input id="id" name="id" type="hidden" value="${projectPostGeneralPage.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="pid" name="pid" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${projectPostGeneralPage.pid}'/>
- <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="overallSituation" name="overallSituation" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${projectPostGeneralPage.overallSituation}'/>
- <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="setterId" name="setterId" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${projectPostGeneralPage.setterId}'/>
- <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="deleteFlag" name="deleteFlag" type="text" style="width: 150px" class="inputxt" ignore="ignore" value='${projectPostGeneralPage.deleteFlag}'/>
- <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/projectpostgeneral/projectPostGeneral.js"></script>
|