1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <form id="updateConstructionForm" method="post" enctype="multipart/form-data">
- <input type="hidden" name="construction.id" id="id_update">
- <div class="easyui-tabs" id="tabs_update">
- <div title="合同信息" id="htxx_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="construction.renovationContract.id" id="renovationContractId_update">
- </td>
- </tr>
- <tr>
- <th>装修单位</th>
- <td colspan="3">
- <span id="companyName_update"></span>
- </td>
- </tr>
- <tr>
- <th>施工时间</th>
- <td colspan="3">
- <input class="easyui-datebox" id="constructionDate_update" name="construction.constructionDate">
- </td>
- </tr>
- <tr>
- <th>施工内容</th>
- <td colspan="3">
- <textarea rows="4" cols="" style="width: 100%" name="construction.content" id="content_update"></textarea>
- </td>
- </tr>
- </table>
- </div>
- <div title="图片上传" id="htwj_update">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="20%">材料进出图片</th>
- <td width="80%">
- <span id="materialFile_update_file">
- <input type="button" value="上传" onclick="materialFile_update.click()">
- <input type="file" multiple name="materialFile" id="materialFile_update" class="easyui-validatebox" style="float:left;width:0px">
- </span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </form>
|