1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <form id="updateDecorationAcceptanceForm" method="post" enctype="multipart/form-data">
- <input type="hidden" name="decorationAcceptance.id" id="id_update">
- <div class="easyui-tabs" id="tabs_update">
- <div title="验收信息" id="ysxx_update">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="15%">合同编号</th>
- <td width="35%">
- <span id="number_update"></span>
- </td>
- <th width="15%">合同名称</th>
- <td width="35%">
- <span id="name_update"></span>
- <input type="hidden" name="decorationAcceptance.renovationContract.id" id="renovationContractId_update">
- </td>
- </tr>
- <tr>
- <th>装修单位</th>
- <td colspan="3">
- <span id="company_update"></span>
- </td>
- </tr>
- <tr>
- <th>装修内容</th>
- <td colspan="3">
- <span id="content_update"></span>
- </td>
- </tr>
- <tr>
- <th>合同时间</th>
- <td>
- <span id="contractDate_update"></span>
- </td>
- <th>合同金额</th>
- <td>
- <span id="money_update"></span>
- </td>
- </tr>
- <tr>
- <th>验收时间</th>
- <td>
- <input class="easyui-datebox" id="acceptanceDate_update" name="decorationAcceptance.acceptanceDate" required="true" >
- </td>
- <th>验收人</th>
- <td>
- <input class="easyui-validatebox" id="acceptance_update" name="decorationAcceptance.acceptance" required="true" >
- </td>
- </tr>
- <tr>
- <th>审计金额</th>
- <td>
- <input class="easyui-numberbox" id="auditMoney_update" name="decorationAcceptance.auditMoney" required="true" >
- </td>
- <th>审计人</th>
- <td>
- <input class="easyui-validatebox" id="auditUser_update" name="decorationAcceptance.auditUser" required="true" >
- </td>
- </tr>
- <tr>
- <th>审计时间</th>
- <td colspan="3">
- <input class="easyui-datebox" id="auditDate_update" name="decorationAcceptance.auditDate" required="true" >
- </td>
- </tr>
- <tr>
- <th>备注</th>
- <td colspan="3">
- <textarea rows="5" cols="" style="width: 100%" name="decorationAcceptance.remark" id="remark_update"></textarea>
- </td>
- </tr>
- </table>
- </div>
- <div title="附件上传" id="ysxx_update">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="20%">验收文件</th>
- <td width="80%">
- <span id="acceptanceFile_update_file">
- <input type="button" value="上传" onclick="acceptanceFile_update.click()">
- <input type="file" multiple name="acceptanceFile" id="acceptanceFile_update" class="easyui-validatebox" style="float:left;width:0px">
- </span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </form>
|