tBServicemanage-deal.jsp 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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,DatePicker"></t:base>
  8. </head>
  9. <body style="overflow-y: hidden" scroll="no">
  10. <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="tBServicemanageController.do?save">
  11. <input id="id" name="id" type="hidden" value="${tBServicemanagePage.id }">
  12. <input name="code" id="code" type="hidden" value="${tBServicemanagePage.TSPrjstatus.code}" />
  13. <input name="taskId" id="taskId" type="hidden" value="${taskId}" />
  14. <input name="keys" id="keys" type="hidden" />
  15. <input name="values" id="values" type="hidden" />
  16. <input name="types" id="types" type="hidden" />
  17. <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
  18. <tr>
  19. <td align="right">
  20. <label class="Validform_label">
  21. 是否审批:
  22. </label>
  23. </td>
  24. <td class="value">
  25. <select name="iconType" id="iconType">
  26. <option value="true">
  27. 审批
  28. </option>
  29. <option value="false">
  30. 不审批
  31. </option>
  32. </select>
  33. <span class="Validform_checktip"></span>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td align="right">
  38. <label class="Validform_label">
  39. 是否复核:
  40. </label>
  41. </td>
  42. <td class="value">
  43. <select name="review" id="review">
  44. <option value="true" >
  45. 复核
  46. </option>
  47. <option value="false">
  48. 不复核
  49. </option>
  50. </select>
  51. <span class="Validform_checktip"></span>
  52. </td>
  53. </tr>
  54. </table>
  55. </t:formvalid>
  56. </body>