update.jsp 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="s" uri="/struts-tags" %>
  3. <form id="updateDecorationChangeForm" method="post" enctype="multipart/form-data">
  4. <input type="hidden" name="decorationChange.id" id="id_update">
  5. <div class="easyui-tabs" id="tabs_update">
  6. <div title="合同信息" id="htxx_update">
  7. <table class="mytable" style="width: 100%;">
  8. <tr>
  9. <th width="15%">合同编号</th>
  10. <td width="35%">
  11. <span id="number_update"></span>
  12. </td>
  13. <th width="15%">合同名称</th>
  14. <td width="35%">
  15. <span id="name_update"></span>
  16. <input type="hidden" name="decorationChange.renovationContract.id" id="renovationContractId_update">
  17. </td>
  18. </tr>
  19. <tr>
  20. <th>装修单位</th>
  21. <td colspan="3">
  22. <span id="company_update"></span>
  23. </td>
  24. </tr>
  25. <tr>
  26. <th>装修内容</th>
  27. <td colspan="3">
  28. <span id="contractContent_update"></span>
  29. </td>
  30. </tr>
  31. <tr>
  32. <th>变更标题</th>
  33. <td colspan="3">
  34. <input class="easyui-validatebox" required="true" id="title_update" name="decorationChange.title" style="width: 100%;">
  35. </td>
  36. </tr>
  37. <tr>
  38. <th>变更描述</th>
  39. <td colspan="3">
  40. <textarea rows="4" cols="" style="width: 100%" name="decorationChange.content" id="content_update"></textarea>
  41. </td>
  42. </tr>
  43. <tr>
  44. <th>变更时间</th>
  45. <td>
  46. <input class="easyui-datebox" id="businessDate_update" name="decorationChange.businessDate" required="true" >
  47. </td>
  48. <th>变更人</th>
  49. <td>
  50. <input class="easyui-validatebox" id="businessUserName_update" value="${user.fullName}" name="decorationChange.businessUserName" required="true" >
  51. </td>
  52. </tr>
  53. </table>
  54. </div>
  55. <div title="附件上传" id="htwj_update">
  56. <table class="mytable" style="width: 100%;">
  57. <tr>
  58. <th width="20%">附件</th>
  59. <td width="80%">
  60. <span id="changeFile_update_file">
  61. <input type="button" value="上传" onclick="changeFile_update.click()">
  62. <input type="file" multiple name="changeFile" id="changeFile_update" class="easyui-validatebox" style="float:left;width:0px">
  63. </span>
  64. </td>
  65. </tr>
  66. </table>
  67. </div>
  68. </div>
  69. </form>