123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <html>
- <head>
- <title>投标管理</title>
- <meta name="decorator" content="default"/>
- <style>
- label.error{
- left:0px;
- top:40px;
- }
- </style>
- <script type="text/javascript">
- var validateForm;
- function doSubmit(i){//回调函数,在编辑和保存动作时,供openDialog调用提交表单。
- if(validateForm.form()){
- var tenderStatus = $("#tenderStatus").val();
- if("中标" == tenderStatus){
- var num = $("#file_attachment tr").length;
- if(num>0){
- $("#inputForm").submit();
- return true;
- }else{
- layer.alert('项目已中标,请上传中标通知书', {
- icon: 5,
- title: "上传中标通知书"
- });
- }
- return false;
- }
- $("#inputForm").submit();
- return true;
- }
-
- return false;
- }
- $(document).ready(function() {
- $(".td1").removeClass("hide");
- $(".td2").addClass("hide");
- $("input[name='ext']").on('ifChecked', function(event){
- var radioVal = $(this).val();
- if(radioVal == 0){
- $(".td1").removeClass("hide");
- $(".td2").addClass("hide");
- }else{
- $(".td1").addClass("hide");
- $(".td2").removeClass("hide");
- }
- });
- if("${workReimbursement.ext}" == "1"){
- $("#ext1").iCheck('check')
- }else{
- $("#ext").iCheck('check')
- }
- validateForm = $("#inputForm").validate({
- submitHandler: function(form){
- loading('正在提交,请稍等...');
- form.submit();
- },
- errorContainer: "#messageBox",
- errorPlacement: function(error, element) {
- $("#messageBox").text("输入有误,请先更正。");
- if (element.is(":checkbox")||element.is(":radio")||element.parent().is(".input-append")){
- error.appendTo(element.parent().parent());
- } else {
- error.insertAfter(element);
- }
- }
- });
- laydate.render({
- elem: '#tenderTime', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'
- event: 'focus', //响应事件。如果没有传入event,则按照默认的click
- type : 'date'
- });
- $("#attachment_btn").click(function () {
- $("#attachment_file").click();
- });
- });
- function insertTitle(tValue){
- var list = "${workGoOut.workAttachments}";
- var size = (list.split('url')).length-1;
- var files = $("#attachment_file")[0].files; for(var i = 0;i<files.length;i++) { var file = files[i];
- var attachmentId = "";
- var attachmentFlag = "102";
- console.log(file);
- var timestamp=new Date().getTime();
- var storeAs = "attachment-file/workIncomingMessage/"+timestamp+"/"+file['name'];
- var uploadPath="http://gangwan-app.oss-cn-hangzhou.aliyuncs.com/"+storeAs;/*将这段字符串存到数据库即可*/
- var divId = "_attachment";
- $("#addFile"+divId).show();
- multipartUploadWithSts(storeAs, file,attachmentId,attachmentFlag,uploadPath,divId,size);}
- }
- function setPNumber(obj){
- $.ajax({
- type:'post',
- url:'${ctx}/workinvoice/workInvoice/getPNumber',
- data:{
- "obj":obj
- },
- success:function(data){
- var d = JSON.parse(data);
- $("#pNumber").val(d.pNumber);
- $("#cInfoName").val(d.cInfoName);
- $("#cName").val(d.cName);
- }
- })
- }
- </script>
- </head>
- <body>
- <div class="single-form">
- <div class="container">
- <form:form id="inputForm" modelAttribute="biddingManagement" action="${ctx}/management/biddingManagement/save" method="post" class="form-horizontal">
- <input type="hidden" id="projectId" name="projectId" value="">
- <form:hidden path="id"/>
- <div class="form-group layui-row first">
- <div class="form-group-label"><h2>基本信息</h2></div>
- <div class="layui-item layui-col-sm6">
- <label class="layui-form-label"><span class="require-item">*</span>评估类型:</label>
- <div class="layui-input-block">
- <input type="radio" class="i-checks" name="ext" checked id="ext" value="0">
- <label for="ext">项目已评估</label>
- <input type="radio" class="i-checks" name="ext" id="ext1" value="1">
- <label for="ext1">项目未评估</label>
- </div>
- </div>
- </div>
- <div class="form-group layui-row">
- <div class="layui-item layui-col-sm6 td1">
- <label class="layui-form-label double-line"><span class="require-item">*</span>评估项目名称:</label>
- <div class="layui-input-block with-icon">
- <input type="hidden" value="" id ="ids">
- <sys:gridselectcallprojectt url="${ctx}/management/biddingManagement/selectProject" id="project" name="project.id" value="${biddingManagement.projectId}" title="选择所属项目" labelName="biddingManagement.projectName"
- labelValue="${biddingManagement.projectName}" cssClass="form-control required layui-input" fieldLabels="项目" fieldKeys="projectName" searchLabel="项目名称" searchKey="projectName" ></sys:gridselectcallprojectt>
- </div>
- </div>
- <div class="layui-item layui-col-sm6 td2">
- <label class="layui-form-label double-line"><span class="require-item">*</span>投标项目名称:</label>
- <div class="layui-input-block">
- <form:input path="projectName" htmlEscape="false" class="form-control layui-input required"/>
- </div>
- </div>
- <div class="layui-item layui-col-sm6">
- <label class="layui-form-label double-line">投标记录编号:</label>
- <div class="layui-input-block">
- <div class="input-group">
- <form:input path="biddingId" htmlEscape="false" readonly="true" class="form-control layui-input"/>
- </div>
- </div>
- </div>
- <div class="layui-item layui-col-sm6">
- <label class="layui-form-label double-line"><span class="require-item">*</span>投标时间:</label>
- <div class="layui-input-block">
- <input class="laydate-icondate layui-input form-control layer-date laydate-icon required" id="tenderTime" name="tenderTime" value="<fmt:formatDate value="${biddingManagement.tenderTime}" pattern="yyyy-MM-dd"/>">
- </div>
- </div>
- <div class="layui-item layui-col-sm6 ">
- <label class="layui-form-label double-line"><span class="require-item">*</span>投标状态:</label>
- <div class="layui-input-block">
- <select id="tenderStatus" name="tenderStatus" class="form-control simple-select required" lay-verify="">
- <option value="">--请选择投标状态--</option>
- <option value="未开标" <c:if test="${biddingManagement.tenderStatus eq '未开标' }">selected</c:if>>未开标</option>
- <option value="中标" <c:if test="${biddingManagement.tenderStatus eq '中标' }">selected</c:if>>中标</option>
- <option value="未中标" <c:if test="${biddingManagement.tenderStatus eq '未中标' }">selected</c:if>>未中标</option>
- </select>
- </div>
- </div>
- <div class="layui-item layui-col-sm12 with-textarea">
- <label class="layui-form-label double-line">备 注:</label>
- <div class="layui-input-block">
- <form:textarea path="remarks" htmlEscape="false" rows="3" maxlength="255" class="form-control"/>
- </div>
- </div>
- </div>
- <div class="form-group layui-row">
- <div class="form-group-label double-line"><h2>上传中标通知书</h2></div>
- <div class="layui-item nav-btns">
- <a id="attachment_btn" class="nav-btn nav-btn-add" title="上传中标通知书"><i class="fa fa-plus"></i> 上传中标通知书</a>
- </div>
- <div id="addFile_attachment" style="display: none" class="upload-progress">
- <span id="fileName_attachment" ></span>
- <b><span id="baifenbi_attachment" ></span></b>
- <div class="progress">
- <div id="jindutiao_attachment" class="progress-bar" style="width: 0%" aria-valuenow="0">
- </div>
- </div>
- </div>
- <input id="attachment_file" type="file" name="attachment_file" multiple="multiple" style="display: none;" onChange="if(this.value)insertTitle(this.value);"/>
- <span id="attachment_title"></span>
- <div class="layui-item layui-col-xs12" style="padding:0 16px;">
- <table id="upTable" class="table table-bordered table-condensed details">
- <thead>
- <tr>
- <%-- <th>序号</th>--%>
- <th>文件预览</th>
- <th>上传人</th>
- <th>上传时间</th>
- <th width="150px">操作</th>
- </tr>
- </thead>
- <tbody id="file_attachment">
- <c:forEach items="${biddingManagement.workAttachments}" var = "workClientAttachment" varStatus="status">
- <tr>
- <%-- <td>${status.index + 1}</td>--%>
- <c:choose>
- <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpg')
- or fn:containsIgnoreCase(workClientAttachment.attachmentName,'png')
- or fn:containsIgnoreCase(workClientAttachment.attachmentName,'gif')
- or fn:containsIgnoreCase(workClientAttachment.attachmentName,'bmp')
- or fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpeg')}">
- <td><img src="${workClientAttachment.url}" width="50" height="50" onclick="openDialogView('预览','${ctx}/sys/picturepreview/picturePreview?url=${workClientAttachment.url}','90%','90%')" alt="${workClientAttachment.attachmentName}"></td>
- </c:when>
- <c:otherwise>
- <c:choose>
- <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'pdf')}">
- <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%','1')">${workClientAttachment.attachmentName}</a></td>
- </c:when>
- <c:otherwise>
- <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%')">${workClientAttachment.attachmentName}</a></td>
- </c:otherwise>
- </c:choose>
- </c:otherwise>
- </c:choose>
- <td>${workClientAttachment.createBy.name}</td>
- <td><fmt:formatDate value="${workClientAttachment.createDate}" type="both"/></td>
- <td class="op-td">
- <div class="op-btn-box" >
- <a href="javascript:location.href='${ctx}/workfullmanage/workFullManage/downLoadAttach?file='+encodeURIComponent(encodeURIComponent('${workClientAttachment.url}'));" class="op-btn op-btn-download"><i class="fa fa-download"></i> 下载</a>
- <c:if test="${workClientAttachment.createBy.id eq fns:getUser().id}">
- <a href="javascript:void(0)" onclick="deleteFileFromAliyun(this,'${ctx}/sys/workattachment/deleteFileFromAliyun?url=${workClientAttachment.url}&id=${workClientAttachment.id}&type=2','addFile')" class="op-btn op-btn-delete" ><i class="fa fa-trash"></i> 删除</a>
- </c:if>
- </div>
- </td>
- </tr>
- </c:forEach>
- </tbody>
- </table>
- </div>
- </div>
- </form:form>
- </div>
- </div>
- </body>
- </html>
|