123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
- <%@ taglib prefix="s" uri="/struts-tags" %>
- <script type="text/javascript">
- <!--
- KindEditor.ready(function(K) {
- var options = {
- //自定义工具栏
- items : [ 'source', 'plainpaste', 'wordpaste', 'preview', '|',
- 'fontname', 'fontsize', '|',
- 'forecolor', 'hilitecolor', 'bold',
- 'italic', 'underline', 'removeformat', '|',
- 'clearhtml', 'selectall','|',
- 'justifyleft', 'justifycenter', 'justifyright',
- 'indent','outdent','insertorderedlist', 'insertunorderedlist', '|',
- 'image', "multiimage", 'insertfile', '|',
- 'table', 'baidumap' ],
- //图片上传Action
- uploadJson : whzl.basePath+'/imgUpload_imgUpload',
-
- //允许网络图片上传
- allowImageRemote : true,
-
- //文件空间Action
- fileManagerJson : whzl.basePath+'/fileManager_fileManager',
-
- //允许展示文件空间
- allowFileManager : true,
-
- //kindeditor创建后,将编辑器的内容设置到原来的textarea控件里
- afterCreate : function(){ this.sync(); },
-
- //编辑器聚焦后,将编辑器的内容设置到原来的textarea控件里
- afterBlur: function(){ this.sync(); },
-
- //编辑器内容发生变化后,将编辑器的内容设置到原来的textarea控件里
- afterChange: function(){ this.sync(); }
- };
- editor_result = K.create('#content_result',options);
- });
- //-->
- </script>
- <form id="resultTenderForm" method="post" enctype="multipart/form-data">
- <input type="hidden" name="tender.id" id="id_result">
- <table class="mytable" style="width: 100%;">
- <tr>
- <th width="15%">项目编号</th>
- <td width="35%">
- <span id="number_result"></span>
- </td>
- <th width="15%">项目名称</th>
- <td width="35%">
- <span id="name_result"></span>
- </td>
- </tr>
- <tr>
- <th>招标房源</th>
- <td colspan="3">
- <span id="chooseHouse_result"></span>
- </td>
- </tr>
- <tr>
- <th>招标类型</th>
- <td>
- <span id="tenderType_result"></span>
- </td>
- <th>开标时间</th>
- <td>
- <span id="startDate_result"></span>
- </td>
- </tr>
- <tr>
- <th>开标地点</th>
- <td colspan="3">
- <span id="address_result"></span>
- </td>
- </tr>
- <tr>
- <th>公告内容</th>
- <td colspan="3">
- <textarea id="content_result" rows="20" cols="" style="width: 100%"></textarea>
- </td>
- </tr>
- <tr>
- <th>招标附件上传</th>
- <td colspan="3" id="file_td">
- <span id="file_result"></span>
- </td>
- </tr>
- <tr>
- <th>中标单位</th>
- <td>
- <input class="easyui-validatebox" name="tender.bid" id="bid_result" required="true" readonly="readonly" style="width: 150">
- <input type="button" value="选择" onclick="changeCompany('result','中标单位')">
- <input type="hidden" name="tender.bidCompany.id" id="bidCompanyId_result">
- </td>
- <th>中标金额</th>
- <td>
- <input class="easyui-numberbox" required="true" name="tender.money" id="money_result" precision="2">
- </td>
- </tr>
- </table>
- </form>
|