123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237 |
- <%@ 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()){
- if(i==2){
- $("#inputForm").attr("action","${ctx}/project/projectAssess/tstore");
- }
- $("#inputForm").submit();
- return true;
- }
- return false;
- }
- $(document).ready(function() {
- $("input[name='ext']").on('ifChecked', function(event){
- var radioVal = $(this).val();
- if(radioVal == 0){
- $(".td1").removeClass("hide");
- }else{
- $(".td1").addClass("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);
- }
- }
- });
- $("#attachment_btn").click(function () {
- $("#attachment_file").click();
- });
- });
- function insertTitle(tValue){
- var list = "${workAdministrativeAtamp.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);
- $("#officeId").val(d.officeId);
- $("#companyName").val(d.companyName);
- $("#officeName").val(d.officeName);
- $("#projectNameStr").val(d.pNumber);
- $("#projectIdStr").val(obj);
- }
- })
- }
- </script>
- </head>
- <body>
- <div class="single-form">
- <div class="container">
- <form:form id="inputForm" modelAttribute="projectAssess" action="${ctx}/project/projectAssess/save" method="post" class="form-horizontal">
- <input type="hidden" id="enname" value="${loginUserRole.enname}">
- <input type="hidden" id="projectIdStr" name="projectIdStr" value="">
- <input type="hidden" id="projectNameStr" name="projectNameStr" 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 lw7">
- <label class="layui-form-label"><span class="require-item">*</span>项目名称:</label>
- <div class="layui-input-block with-icon">
- <input type="hidden" value="" id ="ids">
- <sys:gridselectcallprojectt url="${ctx}/workinvoice/workInvoice/selectproject" id="project" name="project.id" value="${projectAssess.projectId}" title="选择所属项目" labelName="projectAssess.projectName"
- labelValue="${projectAssess.projectName}" cssClass="form-control required layui-input" fieldLabels="项目" fieldKeys="projectName" searchLabel="项目名称" searchKey="projectName" ></sys:gridselectcallprojectt>
- </div>
- </div>
- <div class="layui-item layui-col-sm6 lw7">
- <label class="layui-form-label double-line">公司名称:</label>
- <div class="layui-input-block">
- <input htmlEscape="false" id="companyName" name="companyName" readonly="readonly" class="form-control layui-input" value="${projectAssess.companyName}"/>
- </div>
- </div>
- <div class="layui-item layui-col-sm6 lw7">
- <label class="layui-form-label double-line">所属部门:</label>
- <div class="layui-input-block">
- <input type="text" id="officeName" name="office.name" readonly="readonly" class="form-control layui-input" value="${projectAssess.officeName}"/>
- <input type="hidden" id="officeId" name="office.id" readonly="readonly" class="form-control layui-input" value=""/>
- </div>
- </div>
- <%--<div class="layui-item layui-col-sm6 lw7">
- <label class="layui-form-label"><span class="require-item">*</span>项目负责人:</label>
- <div class="layui-input-block with-icon">
- <sys:treeselectt id="master" name="projectLeaders" value="${projectRecords.leaderIds}" labelName="leaderNameStr" labelValue="${projectRecords.leaderNameStr}"
- title="用户" url="/sys/office/treeDataAll?type=3" checked="true" cssClass="form-control required layui-input" allowClear="true" notAllowSelectParent="true"/>
- </div>
- </div>--%>
- <div class="layui-item layui-col-sm6 lw7">
- <label class="layui-form-label double-line"><span class="require-item">*</span>信息提供人及类型:</label>
- <div class="layui-input-block">
- <form:select path="informationSupplyType" cssClass="form-control required simple-select">
- <form:option value="" label=""/>
- <form:options items="${fns:getMainDictList('information_supply_type')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
- </form:select>
- </div>
- </div>
- <div class="layui-item layui-col-sm6 lw7">
- <label class="layui-form-label double-line"><span class="require-item">*</span>项目类型:</label>
- <div class="layui-input-block">
- <form:select path="projectType" cssClass="form-control required simple-select">
- <form:option value="" label=""/>
- <form:options items="${fns:getMainDictList('project_type')}" itemLabel="label" itemValue="value" htmlEscape="false"/>
- </form: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="projectOverview" id="projectOverview" htmlEscape="false" maxlength="500" rows="4" class="form-control" placeholder="项目概况(项目类型、建设地点、是否涉及生态红线、环境风险等级、敏感程度等)"/>
- </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="3" 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" 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="${workAdministrativeAtamp.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>
|