update.jsp 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="s" uri="/struts-tags" %>
  3. <form id="updateRenovationContractForm" method="post" enctype="multipart/form-data">
  4. <input type="hidden" name="renovationContract.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="20%">合同编号</th>
  10. <td width="30%">
  11. <input type="text" name="renovationContract.number" id="number_update">
  12. </td>
  13. <th width="20%">合同名称</th>
  14. <td width="30%">
  15. <input class="easyui-validatebox" required="true" id="name_update" name="renovationContract.name">
  16. </td>
  17. </tr>
  18. <tr>
  19. <th>合同时间</th>
  20. <td>
  21. <input class="easyui-datebox" id="contractDate_update" name="renovationContract.contractDate">
  22. </td>
  23. <th>合同金额</th>
  24. <td>
  25. <input class="easyui-numberbox" required="true" name="renovationContract.money" id="money_update" precision="2">
  26. </td>
  27. </tr>
  28. <tr>
  29. <th>装修招标</th>
  30. <td colspan="3">
  31. <input class="easyui-validatebox" required="true" id="tenderName_update" style="width: 400px;" readonly="readonly">
  32. <!-- <input type="button" value="选择" onclick="changeTender('update')"> -->
  33. <input type="hidden" name="renovationContract.tender.id" id="tenderId_update">
  34. </td>
  35. </tr>
  36. <tr>
  37. <th>装修单位</th>
  38. <td colspan="3">
  39. <input class="easyui-validatebox" required="true" id="b_update" name="renovationContract.b" style="width: 400px;" readonly="readonly">
  40. <input type="hidden" name="renovationContract.foreignCompany.id" id="foreignCompanyId_update">
  41. </td>
  42. </tr>
  43. <tr>
  44. <th>付款方式</th>
  45. <td colspan="3">
  46. <textarea rows="4" cols="" style="width: 100%" name="renovationContract.paymentMethod" id="paymentMethod_update"></textarea>
  47. </td>
  48. </tr>
  49. <tr>
  50. <th>合同内容</th>
  51. <td colspan="3">
  52. <textarea rows="4" cols="" style="width: 100%" name="renovationContract.content" id="content_update"></textarea>
  53. </td>
  54. </tr>
  55. </table>
  56. </div>
  57. <div title="合同文件" id="htwj_update">
  58. <table class="mytable" style="width: 100%;">
  59. <tr>
  60. <th width="20%">合同文件</th>
  61. <td width="80%">
  62. <span id="contractFile_update_file">
  63. <input type="button" value="上传" onclick="contractFile_update.click()">
  64. <input type="file" multiple name="contractFile" id="contractFile_update" class="easyui-validatebox" style="float:left;width:0px">
  65. </span>
  66. </td>
  67. </tr>
  68. </table>
  69. </div>
  70. </div>
  71. </form>