123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <form id="updateDecorationChangeForm" method="post" enctype="multipart/form-data">
- <input type="hidden" name="decorationChange.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="decorationChange.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="contractContent_update"></span>
- </td>
- </tr>
- <tr>
- <th>变更标题</th>
- <td colspan="3">
- <input class="easyui-validatebox" required="true" id="title_update" name="decorationChange.title" style="width: 100%;">
- </td>
- </tr>
- <tr>
- <th>变更描述</th>
- <td colspan="3">
- <textarea rows="4" cols="" style="width: 100%" name="decorationChange.content" id="content_update"></textarea>
- </td>
- </tr>
- <tr>
- <th>变更时间</th>
- <td>
- <input class="easyui-datebox" id="businessDate_update" name="decorationChange.businessDate" required="true" >
- </td>
- <th>变更人</th>
- <td>
- <input class="easyui-validatebox" id="businessUserName_update" value="${user.fullName}" name="decorationChange.businessUserName" required="true" >
- </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="changeFile_update_file">
- <input type="button" value="上传" onclick="changeFile_update.click()">
- <input type="file" multiple name="changeFile" id="changeFile_update" class="easyui-validatebox" style="float:left;width:0px">
- </span>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </form>
|