projectService-add.jsp 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. <script type="text/javascript">
  9. //编写自定义JS代码
  10. </script>
  11. </head>
  12. <body>
  13. <t:formvalid formid="formobj" dialog="true" usePlugin="password" layout="table" action="projectServiceController.do?doAdd" >
  14. <input id="id" name="id" type="hidden" value="${projectServicePage.id }"/>
  15. <table style="width: 600px;" cellpadding="0" cellspacing="1" class="formtable">
  16. <tr>
  17. <td align="right">
  18. <label class="Validform_label">
  19. <span color="red" class="requiredIcon">*</span>项目:
  20. </label>
  21. </td>
  22. <td class="value">
  23. <input readonly="true" type="text" id="projectName" name="projectName" datatype="*" style="width: 157px" placeholder="请选择项目名称" onclick="openDepartmentSelect()">
  24. <input id="projectid" name="projectid" type="hidden" value="">
  25. <a href="#" class="easyui-linkbutton" plain="true" icon="icon-select" id="departSearch" onclick="openDepartmentSelect()">选择</a>
  26. <a href="#" class="easyui-linkbutton" plain="true" icon="icon-clean" id="departRedo" onclick="callbackClean()">清空</a>
  27. </td>
  28. </tr>
  29. <tr>
  30. <td align="right">
  31. <label class="Validform_label">
  32. <span color="red" class="requiredIcon">*</span>服务类型:
  33. </label>
  34. </td>
  35. <td class="value">
  36. <t:dictSelect field="servicetypedetail" type="list" datatype="*" typeGroupCode="servicetypedetail" hasLabel="false" title="服务类型"></t:dictSelect>
  37. </td>
  38. </tr>
  39. <tr>
  40. <td align="right">
  41. <label class="Validform_label">
  42. 服务编码:
  43. </label>
  44. </td>
  45. <td class="value">
  46. <input id="code" name="code" type="text" style="width: 150px" class="inputxt" ignore="ignore" />
  47. <span class="Validform_checktip"></span>
  48. <label class="Validform_label" style="display: none;">服务编码</label>
  49. </td>
  50. </tr>
  51. <tr>
  52. <td align="right">
  53. <label class="Validform_label">
  54. <span color="red" class="requiredIcon">*</span>服务名称:
  55. </label>
  56. </td>
  57. <td class="value">
  58. <input id="name" name="name" type="text" style="width: 150px" class="inputxt" datatype="*" ignore="checked" />
  59. <span class="Validform_checktip"></span>
  60. <label class="Validform_label" style="display: none;">服务名称</label>
  61. </td>
  62. </tr>
  63. </table>
  64. </t:formvalid>
  65. </body>
  66. <script src = "webpage/cn/com/lzt/projectservice/projectService.js"></script>