1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <form id="addRenovationContractForm" method="post" enctype="multipart/form-data">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="20%">合同编号</th>
- <td width="30%">
- <input type="text" name="renovationContract.number" id="number_add">
- </td>
- <th width="20%">合同名称</th>
- <td width="30%">
- <input class="easyui-validatebox" required="true" id="name_add" name="renovationContract.name">
- </td>
- </tr>
- <tr>
- <th>合同时间</th>
- <td>
- <input class="easyui-datebox" id="contractDate_add" name="renovationContract.contractDate">
- </td>
- <th>合同金额</th>
- <td>
- <input class="easyui-numberbox" required="true" name="renovationContract.money" id="money_add" precision="2">
- </td>
- </tr>
- <tr>
- <th>装修招标</th>
- <td colspan="3">
- <input class="easyui-validatebox" required="true" id="tenderName_add" style="width: 400px;" readonly="readonly">
- <input type="button" value="选择" onclick="changeTender('add')">
- <input type="hidden" name="renovationContract.tender.id" id="tenderId_add">
- </td>
- </tr>
- <tr>
- <th>装修单位</th>
- <td colspan="3">
- <input class="easyui-validatebox" required="true" id="b_add" name="renovationContract.b" style="width: 400px;" readonly="readonly">
- <input type="hidden" name="renovationContract.foreignCompany.id" id="foreignCompanyId_add">
- </td>
- </tr>
- <tr>
- <th>付款方式</th>
- <td colspan="3">
- <textarea rows="4" cols="" style="width: 100%" name="renovationContract.paymentMethod" id="paymentMethod_add"></textarea>
- </td>
- </tr>
- <tr>
- <th>合同内容</th>
- <td colspan="3">
- <textarea rows="4" cols="" style="width: 100%" name="renovationContract.content" id="content_id"></textarea>
- </td>
- </tr>
- </table>
- </form>
|