| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254 | <%@ page import="com.jeeplus.modules.sys.utils.UserUtils" %><%@ page contentType="text/html;charset=UTF-8" %><%@ include file="/webpage/include/taglib.jsp"%><html><head>	<title>企业介绍管理</title>	<meta name="decorator" content="default"/>	<style type="text/css">		img{width: 50px;height: 50px;}	</style>	<script type="text/javascript">        var validateForm;        function doSubmit(){//回调函数,在编辑和保存动作时,供openDialog调用提交表单。            if(validateForm.form()){                if($("#file_attachment tr").length==0){                    top.layer.alert('请上传企业介绍附件!', {icon: 0});                    return;                }                if($("#file_attachment tr").length>1){                    top.layer.alert('仅可以上传一个附件!', {icon: 0});                    return;                }                $("#inputForm").submit();                return true;            }            return false;        }        $(document).ready(function() {            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: '#uploadDate', //目标元素。由于laydate.js封装了一个轻量级的选择器引擎,因此elem还允许你传入class、tag但必须按照这种方式 '#id .class'                event: 'focus' //响应事件。如果没有传入event,则按照默认的click            });            $("#attachment_btn").click(function () {                if($("#file_attachment tr").length>0){                    top.layer.alert('仅可以上传一个附件', {icon: 0});                    return;                }                $("#attachment_file").click();            });        });        function insertTitle(tValue){            var list = "${officeintroduce.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];            console.log("文件大小"+file.size);            if(file.size >200000){                top.layer.alert('文件大小限制在200K以内!', {icon: 0});                return;            }            var attachmentId = "";            var attachmentFlag = "111";            console.log(file);            var timestamp=new Date().getTime();            var storeAs = "attachment-file/officeintroduce/"+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 next_upload_image_button(index){            $("#next_upload_file_"+index).click();        }        function next_upload_show_image(index){            var obj =$("#next_upload_file_"+index)[0].files[0];            var fileType = obj.type;            var url ;            if(fileType.endsWith("png")||fileType.endsWith("bmp")||fileType.endsWith("jpg")||fileType.endsWith("jpeg")||fileType.endsWith("gif")){                url = window.URL.createObjectURL(obj);            }else {                $("#next_upload_msg").css({"color":"red"});                next_close_img(index);                return false ;            }            $("#next_upload_msg").removeAttr("style");            $("#next_upload_image_"+index).attr("src",url);            var length = $("#next_upload_image_div :file").length;            if( index == length &&  length < 1 ){                next_upload_image_append(index);                next_add_x(index);            }else if(index == length && length ==1){                var span = '<span id="next_upload_close_'+index+'" class="close_ico" style="cursor:pointer; position: absolute;top:-1px;right: -1px; display:inline-block;z-index:1;color: red;" onclick="next_close_img('+index+');">x</span>';                $("#next_upload_image_1").before(span);            }        }        function next_upload_image_append(index){            var div1 = "<div id='next_upload_div_"+(index+1)+"' style='float:left;position:relative;width: 57px;height: 57px;'>";            var img = '<img  id="next_upload_image_'+(index+1)+'" class="upload_ico" width="50px" height="50px"  onclick="next_upload_image_button('+(index+1)+')" src = "${pageContext.request.contextPath}/static/uploadify/upload_ico.png" style="cursor:pointer;"/>';            var input = '<input id="next_upload_file_'+(index+1)+'" type="file" style="display:none;" name="next_upload_files" onChange="next_upload_show_image('+(index+1)+')" /><br>';            var div2 = "</div>";            $("#next_upload_image_div").append(div1+img+input+div2);        }        function next_close_img(index) {            $("#next_upload_div_"+index).remove();            var length = $("#next_upload_image_div :file").length;            if(length == 0){                next_add_div();            }else if(length == 1){                var x = $("#next_upload_image_div").find("span").text();                if("x" != x){                    next_add_div();                }            }        }        function next_add_x(index) {            var span = '<span id="next_upload_close_'+index+'" class="close_ico" style="cursor:pointer; position: absolute;top:-1px;right: -1px; display:inline-block;z-index:1;color: red;" onclick="next_close_img('+index+');">x</span>';            $("#next_upload_image_div").find("img:eq(-2)").before(span);        }        function next_add_div() {            var next_upload_div_1 =                '<div id="next_upload_div_1" style="float: left;position:relative;width: 57px;height: 57px;" >'+                '<img  id="next_upload_image_1" class="upload_ico" style="cursor:pointer;"  src="${pageContext.request.contextPath}/static/uploadify/upload_ico.png"  onclick="next_upload_image_button(1)"/>'+                '<input id="next_upload_file_1" type="file" style="display:none"  name="next_upload_files"  onchange="next_upload_show_image(1)" /><br>'+                '</div>';            $("#next_upload_image_div").html("").append(next_upload_div_1);        }*/        /*-------------------------------*/	</script></head><body><div class="single-form">	<div class="container">		<form:form id="inputForm" modelAttribute="officeintroduce" action="${ctx}/officeintroduce/officeintroduce/save" method="post"  class="form-horizontal"><%--enctype="multipart/form-data"--%>			<form:hidden path="id"/>			<form:hidden path="office.id" value="<%= UserUtils.getSelectOffice().getParent().getId()%>"/>			<sys:message content="${message}"/>			<div class="form-group layui-row first lw8">				<div class="form-group-label"><h2>基础信息</h2></div>				<div class="layui-item layui-col-sm6">					<label class="layui-form-label">公司名称:</label>					<div class="layui-input-block">						<form:input path="companyName" htmlEscape="false" readonly="true" class="form-control  layui-input"/>					</div>				</div>				<div class="layui-item layui-col-sm6">					<label class="layui-form-label">编号:</label>					<div class="layui-input-block">						<form:input  path="num" htmlEscape="false"   readonly="true" class="form-control layui-input"/>					</div>				</div>				<div class="layui-item layui-col-sm6">					<label class="layui-form-label lw8"><span class="require-item">*</span>介绍名称:</label>					<div class="layui-input-block lw8">						<form:input path="introduce" htmlEscape="false" class="form-control required layui-input"/>					</div>				</div>				<div class="layui-item layui-col-sm6">					<label class="layui-form-label">上传日期:</label>					<div class="layui-input-block">						<input class="laydate-icondate layui-input form-control layer-date laydate-icon" readonly="true" name="uploadDate"							   value="<fmt:formatDate value="${officeintroduce.uploadDate}" pattern="yyyy-MM-dd"/>">					</div>				</div>				<div class="layui-item layui-col-sm12  with-textarea">					<label class="layui-form-label">备注:</label>					<div class="layui-input-block">						<form:textarea path="remarks" htmlEscape="false" rows="4"  maxlength="255"  class="form-control "/>					</div>				</div>			</div>			<div class="form-group layui-row">				<div class="form-group-label"><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" 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="${officeintroduce.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}">									</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>			<div class="form-group layui-row page-end"></div>		</form:form>	</div></div></body></html>
 |