|
@@ -4,10 +4,63 @@
|
|
|
<head>
|
|
|
<title>合同归档管理</title>
|
|
|
<meta name="decorator" content="default"/>
|
|
|
- <link href="${ctxStatic}/layer-v2.3/layui/tableTree/treetable.css" rel="stylesheet" />
|
|
|
+<%-- <link href="${ctxStatic}/layer-v2.3/layui/tableTree/treetable.css" rel="stylesheet" />--%>
|
|
|
+ <script type="text/javascript" src="${ctxStatic}/layui/layui.js"></script>
|
|
|
+ <script src="${ctxStatic}/layer-v2.3/layui/layui.all.js" charset="utf-8"></script>
|
|
|
+ <script src="${ctxStatic}/layer-v2.3/layui/tableTree/treetable.js" charset="utf-8"></script>
|
|
|
+ <link rel='stylesheet' type="text/css" href="${ctxStatic}/layui/css/layui.css"/>
|
|
|
+ <link href="${ctxStatic}/layer-v2.3/layui/tableTree/treetable.css" rel="stylesheet"/>
|
|
|
+ <script type="text/javascript" src="${ctxStatic}/layui/layuidown.js"></script>
|
|
|
<%@include file="/webpage/include/treetable.jsp" %>
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
+
|
|
|
+ layui.use(['tree', 'util'], function() {
|
|
|
+ var reportId = "${materialDefectRecord.reportId}"
|
|
|
+ var id = "${materialDefectRecord.id}"
|
|
|
+ console.log('reportId', reportId)
|
|
|
+ let re = [];
|
|
|
+ $.ajax({
|
|
|
+ //几个参数需要注意一下
|
|
|
+ type: "post",//方法类型
|
|
|
+ dataType: "json",//预期服务器返回的数据类型
|
|
|
+ url: '${ctx}/projectReportDefectRecord/projectReportDefectRecord/getZuzhi',
|
|
|
+ data: {"reportId": reportId,"id": id},
|
|
|
+ success: function (result) {
|
|
|
+ console.log('result', result)
|
|
|
+ re=result;
|
|
|
+ var tree = layui.tree;
|
|
|
+ var util = layui.util
|
|
|
+ var tree = layui.tree
|
|
|
+ , layer = layui.layer
|
|
|
+ , util = layui.util
|
|
|
+ , data = re
|
|
|
+ // , data = [{
|
|
|
+ // id: 1,
|
|
|
+ // title: '成果文件'
|
|
|
+ // , children: re}]
|
|
|
+ tree.render({
|
|
|
+ elem: '#test2'
|
|
|
+ ,data: data
|
|
|
+ ,showCheckbox: true //是否显示复选框
|
|
|
+ ,id: 'demoId1'
|
|
|
+ ,isJump: false //是否允许点击节点时弹出新窗口跳转
|
|
|
+ });
|
|
|
+ util.event('lay-demo', {
|
|
|
+ getChecked: function(othis){
|
|
|
+ checkedData = tree.getChecked('demoId1'); //获取选中节点的数据
|
|
|
+
|
|
|
+ layer.alert(JSON.stringify(checkedData), {shade:0});
|
|
|
+ console.log('checkedData',checkedData);
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ error : function(e) {
|
|
|
+ alert("发生未知错误!");
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
function listTr(obj){
|
|
|
var name=$(obj).attr("id");
|
|
|
var tiao="."+name;
|
|
@@ -23,63 +76,76 @@
|
|
|
}
|
|
|
var validateForm;
|
|
|
function doSubmit(){//回调函数,在编辑和保存动作时,供openDialog调用提交表单。
|
|
|
+ var tree = layui.tree;
|
|
|
+ var test = tree.getChecked('demoId1'); //获取选中节点的数据
|
|
|
+ document.getElementById('zuZhiList').value = JSON.stringify(test)
|
|
|
+
|
|
|
if(validateForm.form()){
|
|
|
var projectId = '${project.id}';
|
|
|
- var leng = $("#file_attachment tr").length;
|
|
|
var boolFlag = true;
|
|
|
- for(var i=0; i<leng; i++) {
|
|
|
- var numberStr = $("#file_attachment tr").eq(i).find("td:first").html();
|
|
|
- var second = $("#file_attachment tr").eq(i).find("td:eq(1)").html();
|
|
|
- var name = $("#file_attachment tr").eq(i).find("td:eq(2)").html();
|
|
|
- var fileFlag = $("#file_attachment tr").eq(i).find("td:last").html();
|
|
|
- if(second == 1){
|
|
|
- if(numberStr != undefined && numberStr !=null && numberStr !=''){
|
|
|
- if (fileFlag==1){
|
|
|
-
|
|
|
- }else{
|
|
|
- top.layer.msg("请上传成果文件!", {icon: 0});
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if(boolFlag){
|
|
|
- var gistdata = $("#file_gistdata tr").length;
|
|
|
- for(var i=0; i<gistdata; i++) {
|
|
|
- var numberStr = $("#file_gistdata tr").eq(i).find("td:first").html();
|
|
|
- var second = $("#file_gistdata tr").eq(i).find("td:eq(1)").html();
|
|
|
- var fileFlag = $("#file_gistdata tr").eq(i).find("td:last").html();
|
|
|
- if(second == 1){
|
|
|
- if(numberStr != undefined && numberStr !=null && numberStr !=''){
|
|
|
- if (fileFlag==1){
|
|
|
-
|
|
|
- }else{
|
|
|
- top.layer.msg("请上传依据性文件!", {icon: 0});
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if(boolFlag){
|
|
|
- var other = $("#file_other tr").length;
|
|
|
- for(var i=0; i<other; i++) {
|
|
|
- var numberStr = $("#file_other tr").eq(i).find("td:first").html();
|
|
|
- var second = $("#file_other tr").eq(i).find("td:eq(1)").html();
|
|
|
- var fileFlag = $("#file_other tr").eq(i).find("td:last").html();
|
|
|
-
|
|
|
- if(second == 1){
|
|
|
- if(numberStr != undefined && numberStr !=null && numberStr !=''){
|
|
|
- if (fileFlag==1){
|
|
|
+ // if (boolFlag) {
|
|
|
+ // var gistdata = $("#file_attachment01 tr").length;
|
|
|
+ // console.log('说明扫描件数量:' + gistdata)
|
|
|
+ // if (gistdata === 0) {
|
|
|
+ // top.layer.msg("请上传说明扫描件!", {icon: 0});
|
|
|
+ // return false;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
|
|
|
- }else{
|
|
|
- top.layer.msg("请上传其它文件!", {icon: 0});
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ // var leng = $("#file_attachment tr").length;
|
|
|
+ // for(var i=0; i<leng; i++) {
|
|
|
+ // var numberStr = $("#file_attachment tr").eq(i).find("td:first").html();
|
|
|
+ // var second = $("#file_attachment tr").eq(i).find("td:eq(1)").html();
|
|
|
+ // var name = $("#file_attachment tr").eq(i).find("td:eq(2)").html();
|
|
|
+ // var fileFlag = $("#file_attachment tr").eq(i).find("td:last").html();
|
|
|
+ // if(second == 1){
|
|
|
+ // if(numberStr != undefined && numberStr !=null && numberStr !=''){
|
|
|
+ // if (fileFlag==1){
|
|
|
+ //
|
|
|
+ // }else{
|
|
|
+ // top.layer.msg("请上传成果文件!", {icon: 0});
|
|
|
+ // return false;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // if(boolFlag){
|
|
|
+ // var gistdata = $("#file_gistdata tr").length;
|
|
|
+ // for(var i=0; i<gistdata; i++) {
|
|
|
+ // var numberStr = $("#file_gistdata tr").eq(i).find("td:first").html();
|
|
|
+ // var second = $("#file_gistdata tr").eq(i).find("td:eq(1)").html();
|
|
|
+ // var fileFlag = $("#file_gistdata tr").eq(i).find("td:last").html();
|
|
|
+ // if(second == 1){
|
|
|
+ // if(numberStr != undefined && numberStr !=null && numberStr !=''){
|
|
|
+ // if (fileFlag==1){
|
|
|
+ //
|
|
|
+ // }else{
|
|
|
+ // top.layer.msg("请上传依据性文件!", {icon: 0});
|
|
|
+ // return false;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // if(boolFlag){
|
|
|
+ // var other = $("#file_other tr").length;
|
|
|
+ // for(var i=0; i<other; i++) {
|
|
|
+ // var numberStr = $("#file_other tr").eq(i).find("td:first").html();
|
|
|
+ // var second = $("#file_other tr").eq(i).find("td:eq(1)").html();
|
|
|
+ // var fileFlag = $("#file_other tr").eq(i).find("td:last").html();
|
|
|
+ //
|
|
|
+ // if(second == 1){
|
|
|
+ // if(numberStr != undefined && numberStr !=null && numberStr !=''){
|
|
|
+ // if (fileFlag==1){
|
|
|
+ //
|
|
|
+ // }else{
|
|
|
+ // top.layer.msg("请上传其它文件!", {icon: 0});
|
|
|
+ // return false;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
if(boolFlag) {
|
|
|
$("#inputForm").submit();
|
|
|
return true;
|
|
@@ -163,7 +229,7 @@
|
|
|
<body>
|
|
|
<div class="single-form">
|
|
|
<div class="container">
|
|
|
- <form:form id="inputForm" modelAttribute="materialDefectRecord" action="${ctx}/projectReportDefectRecord/projectReportDefectRecord/descriptionAuditSave" method="post" class="form-horizontal">
|
|
|
+ <form:form id="inputForm" modelAttribute="materialDefectRecord" action="${ctx}/projectReportDefectRecord/projectReportDefectRecord/descriptionAuditSave" method="post" class="form-horizontal layui-form">
|
|
|
<form:hidden path="id"/>
|
|
|
<form:hidden path="type"/>
|
|
|
<form:hidden path="home"/>
|
|
@@ -236,16 +302,37 @@
|
|
|
<input id="recordDate" name="recordDate" htmlEscape="false" readonly="true" class="form-control layui-input" value="<fmt:formatDate value="${materialDefectRecord.createDate}" pattern="yyyy-MM-dd"/>"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="layui-item layui-col-sm12">
|
|
|
+<%-- <div class="layui-item layui-col-sm12">--%>
|
|
|
+<%-- <label class="layui-form-label"><span class="require-item">*</span>资料缺失说明:</label>--%>
|
|
|
+<%-- <div class="layui-input-block">--%>
|
|
|
+<%-- <form:textarea placeholder="请输入资料缺失说明:" path="remarks" htmlEscape="false" rows="8" maxlength="255" class="form-control required"/>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+ </div>
|
|
|
+ <div class="form-group layui-row first lw12">
|
|
|
+ <div class="form-group-label"><h2>资料缺失说明</h2></div>
|
|
|
+
|
|
|
+ <div class="layui-item layui-col-sm6 lw7">
|
|
|
+ <label class="layui-form-label">短期/永久:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input type="radio" title="短期" lay-filter="ext" name="hiatus" id="hiatus1" value="0" <c:if test="${materialDefectRecord.hiatus=='0'}">checked</c:if>>
|
|
|
+ <input type="radio" title="永久" lay-filter="ext" name="hiatus" id="hiatus2" value="1" <c:if test="${materialDefectRecord.hiatus=='1'}">checked</c:if>>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm12 with-textarea">
|
|
|
<label class="layui-form-label"><span class="require-item">*</span>资料缺失说明:</label>
|
|
|
<div class="layui-input-block">
|
|
|
- <form:textarea placeholder="请输入资料缺失说明:" path="remarks" htmlEscape="false" rows="8" maxlength="255" class="form-control required"/>
|
|
|
+ <form:textarea placeholder="请输入资料缺失说明:" path="remarks" htmlEscape="false" rows="8"
|
|
|
+ maxlength="255" class="form-control required"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div class="layui-item layui-col-sm12 with-textarea">
|
|
|
+ <div id="test2" class="demo-tree-more"></div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
-
|
|
|
+ <input id="zuZhiList" name="zuZhiList" htmlEscape="false" readonly="true" style="display: none"/>
|
|
|
<div class="form-group layui-row">
|
|
|
- <div class="form-group-label"><h2>附件信息</h2></div>
|
|
|
+ <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>
|
|
|
<%--<sys:collectSelect id="linkman" url="${ctx}/workclientinfo/workClientInfo/linkmanList"
|
|
@@ -433,7 +520,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="form-group layui-row">
|
|
|
+ <%--<div class="form-group layui-row">
|
|
|
<div class="form-group-label"><h2>成果文件</h2></div>
|
|
|
<div id="addFile_attachment" style="display: none" class="upload-progress">
|
|
|
<span id="fileName_attachment" ></span>
|
|
@@ -450,7 +537,7 @@
|
|
|
<table id="upTable" class="table table-bordered table-condensed tree_table">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <%-- <th>序号</th>--%>
|
|
|
+ <%– <th>序号</th>–%>
|
|
|
<th width="20%">文件要求</th>
|
|
|
<th width="35%">文件描述/文件</th>
|
|
|
<th width="20%">文件类型</th>
|
|
@@ -472,9 +559,9 @@
|
|
|
<td class="tabMove" style="text-align: left;"><span class='default_open' style="padding-right: 15px; "></span>${fileAttachment.attachName}<input type="hidden" value="${fileAttachment.attachName}"/></td>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
-<%-- <td class="tabMove" style="text-align: left;"><span class='default_open' style="padding-right: 15px; "></span>${fileAttachment.attachName}<input type="hidden" value="${fileAttachment.attachName}"/></td>--%>
|
|
|
+<%– <td class="tabMove" style="text-align: left;"><span class='default_open' style="padding-right: 15px; "></span>${fileAttachment.attachName}<input type="hidden" value="${fileAttachment.attachName}"/></td>–%>
|
|
|
<td>
|
|
|
-<%-- <div><span class="file_nei">内容:</span><div class="file_neirong">${fileAttachment.attachName}</div></div>--%>
|
|
|
+<%– <div><span class="file_nei">内容:</span><div class="file_neirong">${fileAttachment.attachName}</div></div>–%>
|
|
|
<div style="white-space:normal; word-break:break-all;overflow:hidden;"><span style="font-weight: bold">文件格式及大小:</span>${fileAttachment.attachLength}M;</div><div style="white-space:normal; word-break:break-all;overflow:hidden;"> ${fileAttachment.attachTypes}</div>
|
|
|
</td>
|
|
|
<td></td>
|
|
@@ -554,9 +641,9 @@
|
|
|
</c:choose>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
-<%-- <td>--%>
|
|
|
-<%-- <a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workAttachment.url}','90%','90%')">${workAttachment.attachmentName} ; </a>--%>
|
|
|
-<%-- </td>--%>
|
|
|
+<%– <td>–%>
|
|
|
+<%– <a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workAttachment.url}','90%','90%')">${workAttachment.attachmentName} ; </a>–%>
|
|
|
+<%– </td>–%>
|
|
|
<td class="op-td" style="white-space:normal; word-break:break-all;overflow:hidden;" onclick="readOpenInfo('${workClientAttachment.description}')">${workClientAttachment.description}</td>
|
|
|
|
|
|
|
|
@@ -568,7 +655,7 @@
|
|
|
</td>
|
|
|
<td class="op-td">
|
|
|
<div class="op-btn-box" >
|
|
|
- <%--附件下载删除--%>
|
|
|
+ <%–附件下载删除–%>
|
|
|
<c:choose>
|
|
|
<c:when test="${materialDefectRecord.uploadMode == 2}">
|
|
|
<c:choose>
|
|
@@ -585,7 +672,7 @@
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
|
|
|
- <%-- <a href="javascript:void(0)" onclick="openBill2('编辑附件', '${ctx}/projectAccessory/projectAccessory/workAttachmentForm?attachmentId=${fileAttachment.id}&projectId=${project.id}','70%','80%',false,'inputForm','upTable',this)" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 编辑</a>--%>
|
|
|
+ <%– <a href="javascript:void(0)" onclick="openBill2('编辑附件', '${ctx}/projectAccessory/projectAccessory/workAttachmentForm?attachmentId=${fileAttachment.id}&projectId=${project.id}','70%','80%',false,'inputForm','upTable',this)" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 编辑</a>–%>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
@@ -613,7 +700,7 @@
|
|
|
<table id="gistdata_upTable" class="table table-bordered table-condensed tree_table">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <%-- <th>序号</th>--%>
|
|
|
+ <%– <th>序号</th>–%>
|
|
|
<th width="20%">文件要求</th>
|
|
|
<th width="35%">文件描述/文件</th>
|
|
|
<th width="20%">文件类型</th>
|
|
@@ -625,7 +712,7 @@
|
|
|
<tbody id="file_gistdata">
|
|
|
<c:forEach items="${materialDefectRecord.fileGistdataList}" var = "fileGistdata" varStatus="status">
|
|
|
<tr id="file_gistdata_${fileGistdata.id}_tr" onclick="listTr(this)">
|
|
|
- <%-- <td>${status.index + 1}</td>--%>
|
|
|
+ <%– <td>${status.index + 1}</td>–%>
|
|
|
<td style="display:none">${fileGistdata.id}</td>
|
|
|
<td style="display:none">${fileGistdata.mustFlag}</td>
|
|
|
<c:choose>
|
|
@@ -636,10 +723,10 @@
|
|
|
<td class="tabMove" style="text-align: left;"><span class='default_open' style="padding-right: 15px; "></span>${fileGistdata.attachName}<input type="hidden" value="${fileGistdata.attachName}"/></td>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
-<%-- <td class="tabMove" style="text-align: left;"><span class='default_open' style="padding-right: 15px; "></span>${fileGistdata.attachName}<input type="hidden" value="${fileGistdata.attachName}"/></td>--%>
|
|
|
-<%-- <td></td>--%>
|
|
|
+<%– <td class="tabMove" style="text-align: left;"><span class='default_open' style="padding-right: 15px; "></span>${fileGistdata.attachName}<input type="hidden" value="${fileGistdata.attachName}"/></td>–%>
|
|
|
+<%– <td></td>–%>
|
|
|
<td>
|
|
|
-<%-- <div><span class="file_nei">内容:</span><div class="file_neirong">${fileGistdata.attachName}</div></div>--%>
|
|
|
+<%– <div><span class="file_nei">内容:</span><div class="file_neirong">${fileGistdata.attachName}</div></div>–%>
|
|
|
<div style="white-space:normal; word-break:break-all;overflow:hidden;"><span style="font-weight: bold">文件格式及大小:</span>${fileGistdata.attachLength}M;</div><div style="white-space:normal; word-break:break-all;overflow:hidden;"> ${fileGistdata.attachTypes}</div>
|
|
|
</td>
|
|
|
<td></td>
|
|
@@ -720,9 +807,9 @@
|
|
|
</c:choose>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
-<%-- <td>--%>
|
|
|
-<%-- <a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workAttachment.url}','90%','90%')">${workAttachment.attachmentName} ; </a>--%>
|
|
|
-<%-- </td>--%>
|
|
|
+<%– <td>–%>
|
|
|
+<%– <a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workAttachment.url}','90%','90%')">${workAttachment.attachmentName} ; </a>–%>
|
|
|
+<%– </td>–%>
|
|
|
<td class="op-td" style="white-space:normal; word-break:break-all;overflow:hidden;" onclick="readOpenInfo('${workClientAttachment.description}')">${workClientAttachment.description}</td>
|
|
|
|
|
|
|
|
@@ -734,7 +821,7 @@
|
|
|
</td>
|
|
|
<td class="op-td">
|
|
|
<div class="op-btn-box" >
|
|
|
- <%--附件下载删除--%>
|
|
|
+ <%–附件下载删除–%>
|
|
|
<c:choose>
|
|
|
<c:when test="${materialDefectRecord.uploadMode == 2}">
|
|
|
<c:choose>
|
|
@@ -751,7 +838,7 @@
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
|
|
|
- <%-- <a href="javascript:void(0)" onclick="openBill2('编辑附件', '${ctx}/projectAccessory/projectAccessory/workAttachmentForm?attachmentId=${fileAttachment.id}&projectId=${project.id}','70%','80%',false,'inputForm','upTable',this)" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 编辑</a>--%>
|
|
|
+ <%– <a href="javascript:void(0)" onclick="openBill2('编辑附件', '${ctx}/projectAccessory/projectAccessory/workAttachmentForm?attachmentId=${fileAttachment.id}&projectId=${project.id}','70%','80%',false,'inputForm','upTable',this)" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 编辑</a>–%>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
@@ -779,7 +866,7 @@
|
|
|
<table id="upTable_other" class="table table-bordered table-condensed tree_table">
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <%-- <th>序号</th>--%>
|
|
|
+ <%– <th>序号</th>–%>
|
|
|
<th width="20%">文件要求</th>
|
|
|
<th width="35%">文件描述/文件</th>
|
|
|
<th width="20%">文件类型</th>
|
|
@@ -791,7 +878,7 @@
|
|
|
<tbody id="file_other">
|
|
|
<c:forEach items="${materialDefectRecord.fileOtherList}" var = "fileOther" varStatus="status">
|
|
|
<tr id="file_other_${fileOther.id}_tr" onclick="listTr(this)">
|
|
|
- <%-- <td>${status.index + 1}</td>--%>
|
|
|
+ <%– <td>${status.index + 1}</td>–%>
|
|
|
<td style="display:none">${fileOther.id}</td>
|
|
|
<td style="display:none">${fileOther.mustFlag}</td>
|
|
|
<c:choose>
|
|
@@ -802,9 +889,9 @@
|
|
|
<td class="tabMove" style="text-align: left;"><span class='default_open' style="padding-right: 15px; "></span>${fileOther.attachName}<input type="hidden" value="${fileOther.attachName}"/></td>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
-<%-- <td class="tabMove" style="text-align: left;"><span class='default_open' style="padding-right: 15px; "></span>${fileOther.attachName}<input type="hidden" value="${fileOther.attachName}"/></td>--%>
|
|
|
+<%– <td class="tabMove" style="text-align: left;"><span class='default_open' style="padding-right: 15px; "></span>${fileOther.attachName}<input type="hidden" value="${fileOther.attachName}"/></td>–%>
|
|
|
<td>
|
|
|
-<%-- <div><span class="file_nei">内容:</span><div class="file_neirong">${fileOther.attachName}</div></div>--%>
|
|
|
+<%– <div><span class="file_nei">内容:</span><div class="file_neirong">${fileOther.attachName}</div></div>–%>
|
|
|
<div style="white-space:normal; word-break:break-all;overflow:hidden;"><span style="font-weight: bold">文件格式及大小:</span>${fileOther.attachLength}M;</div><div style="white-space:normal; word-break:break-all;overflow:hidden;"> ${fileOther.attachTypes}</div>
|
|
|
</td>
|
|
|
<td></td>
|
|
@@ -885,9 +972,9 @@
|
|
|
</c:choose>
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
-<%-- <td>--%>
|
|
|
-<%-- <a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workAttachment.url}','90%','90%')">${workAttachment.attachmentName} ; </a>--%>
|
|
|
-<%-- </td>--%>
|
|
|
+<%– <td>–%>
|
|
|
+<%– <a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workAttachment.url}','90%','90%')">${workAttachment.attachmentName} ; </a>–%>
|
|
|
+<%– </td>–%>
|
|
|
<td class="op-td" style="white-space:normal; word-break:break-all;overflow:hidden;" onclick="readOpenInfo('${workClientAttachment.description}')">${workClientAttachment.description}</td>
|
|
|
|
|
|
|
|
@@ -899,7 +986,7 @@
|
|
|
</td>
|
|
|
<td class="op-td">
|
|
|
<div class="op-btn-box" >
|
|
|
- <%--附件下载删除--%>
|
|
|
+ <%–附件下载删除–%>
|
|
|
<c:choose>
|
|
|
<c:when test="${materialDefectRecord.uploadMode == 2}">
|
|
|
<c:choose>
|
|
@@ -916,7 +1003,7 @@
|
|
|
</c:otherwise>
|
|
|
</c:choose>
|
|
|
|
|
|
- <%-- <a href="javascript:void(0)" onclick="openBill2('编辑附件', '${ctx}/projectAccessory/projectAccessory/workAttachmentForm?attachmentId=${fileAttachment.id}&projectId=${project.id}','70%','80%',false,'inputForm','upTable',this)" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 编辑</a>--%>
|
|
|
+ <%– <a href="javascript:void(0)" onclick="openBill2('编辑附件', '${ctx}/projectAccessory/projectAccessory/workAttachmentForm?attachmentId=${fileAttachment.id}&projectId=${project.id}','70%','80%',false,'inputForm','upTable',this)" class="op-btn op-btn-edit" ><i class="fa fa-edit"></i> 编辑</a>–%>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
@@ -925,7 +1012,7 @@
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div>--%>
|
|
|
<div class="form-group layui-row">
|
|
|
<div class="form-group-label"><h2>审批流程</h2></div>
|
|
|
<div class="layui-item layui-col-xs12 form-table-container" >
|