|
@@ -0,0 +1,847 @@
|
|
|
+<%@ page contentType="text/html;charset=UTF-8" %>
|
|
|
+<%@ include file="/webpage/include/taglib.jsp"%>
|
|
|
+<html>
|
|
|
+<head>
|
|
|
+ <title>项目审批管理</title>
|
|
|
+ <meta name="decorator" content="default"/>
|
|
|
+ <script src="${ctxStatic}/layer-v2.3/laydate/laydate.js"></script>
|
|
|
+ <script type="text/javascript" src="${ctxStatic}/layui/layui.js"></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">
|
|
|
+ var validateForm;
|
|
|
+ function doSubmit(obj){//回调函数,在编辑和保存动作时,供openDialog调用提交表单。
|
|
|
+ if(validateForm.form()){
|
|
|
+ var ss= document.getElementById("iframe").contentWindow.document.getElementById("opinion").value
|
|
|
+ $("#opinion").val(ss);
|
|
|
+ if(obj == 1) {
|
|
|
+ $("#flag").val("yes");
|
|
|
+ }else {
|
|
|
+ if(obj == 2){
|
|
|
+ $("#flag").val("no1");
|
|
|
+ }else {
|
|
|
+ $("#flag").val("no2");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $("#inputForm").submit();
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ $(document).ready(function() {
|
|
|
+
|
|
|
+ var tt = $("#contractNum").val();
|
|
|
+ if (tt == null || tt === "") {
|
|
|
+ $("#divv").hide();
|
|
|
+ $("#divv2").show();
|
|
|
+ $("#divv3").hide();
|
|
|
+ setTimeout(function () {
|
|
|
+ var tt = $("#workClientLinkmanList").find("tr").eq(0).find("td").eq(1).text().trim();
|
|
|
+ $("#clientName").val(tt);
|
|
|
+ },100);
|
|
|
+ }else{
|
|
|
+ $("#divv2").hide();
|
|
|
+ }
|
|
|
+
|
|
|
+ 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);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ var contractNum = $("#contractNum").val();
|
|
|
+ if (contractNum == null || contractNum === "") {
|
|
|
+ $("#div1").hide();
|
|
|
+ $("#div3").hide();
|
|
|
+ setTimeout(function () {
|
|
|
+ var tt = $("#workClientLinkmanList").find("tr").eq(0).find("td").eq(1).text().trim();
|
|
|
+ $("#clientName").val(tt);
|
|
|
+ },100);
|
|
|
+ }
|
|
|
+
|
|
|
+ var contractInformation='${projectRecords.workContractInfo.contractInformation}'
|
|
|
+ if(contractInformation == "1"){
|
|
|
+ $("#c2").show();
|
|
|
+ $("#c1").hide();
|
|
|
+ }else{
|
|
|
+ $("#c2").hide();
|
|
|
+ $("#c1").show();
|
|
|
+ }
|
|
|
+ });
|
|
|
+
|
|
|
+ function insertTitle(tValue){
|
|
|
+ var files = $("#attachment_file")[0].files; for(var i = 0;i<files.length;i++) { var file = files[i];
|
|
|
+ var attachmentId = $("#id").val();
|
|
|
+ var attachmentFlag = "82";
|
|
|
+ console.log(file);
|
|
|
+ var timestamp=new Date().getTime();
|
|
|
+
|
|
|
+ var storeAs = "projectRecods";
|
|
|
+ var uploadPath="http://gangwan-app.oss-cn-hangzhou.aliyuncs.com/"+storeAs;/*将这段字符串存到数据库即可*/
|
|
|
+ var divId = "_attachment";
|
|
|
+ $("#addFile"+divId).show();
|
|
|
+ multipartUploadWithSts(storeAs, file,attachmentId,attachmentFlag,uploadPath,divId,0);}
|
|
|
+ }
|
|
|
+
|
|
|
+ function addFile() {
|
|
|
+ $("#attachment_file").click();
|
|
|
+ }
|
|
|
+
|
|
|
+ function addRow(list, idx, tpl, row){
|
|
|
+ // var idx1 = $("#workClientLinkmanList tr").length;
|
|
|
+ bornTemplete(list, idx, tpl, row, idx);
|
|
|
+ }
|
|
|
+
|
|
|
+ function bornTemplete(list, idx, tpl, row, idx1){
|
|
|
+ $(list).append(Mustache.render(tpl, {
|
|
|
+ idx: idx, delBtn: true, row: row,
|
|
|
+ order:idx1 + 1
|
|
|
+ }));
|
|
|
+ $(list+idx).find("select").each(function(){
|
|
|
+ $(this).val($(this).attr("data-value"));
|
|
|
+ });
|
|
|
+ $(list+idx).find("input[type='checkbox'], input[type='radio']").each(function(){
|
|
|
+ var ss = $(this).attr("data-value").split(',');
|
|
|
+ for (var i=0; i<ss.length; i++){
|
|
|
+ if($(this).val() == ss[i]){
|
|
|
+ $(this).attr("checked","checked");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+</head>
|
|
|
+<body >
|
|
|
+<div class="single-form">
|
|
|
+ <div class="container">
|
|
|
+ <form:form id="inputForm" modelAttribute="projectRecords" enctype="multipart/form-data" action="${ctx}/ruralProject/electronicSeal/reportSignatureSaveAudit" method="post" class="layui-form">
|
|
|
+ <form:hidden path="id"/>
|
|
|
+ <form:hidden path="home"/>
|
|
|
+ <form:hidden path="act.taskId"/>
|
|
|
+ <form:hidden path="act.taskName"/>
|
|
|
+ <form:hidden id="taskDefKey" path="act.taskDefKey"/>
|
|
|
+ <form:hidden path="act.procInsId"/>
|
|
|
+ <form:hidden path="act.procDefId"/>
|
|
|
+ <form:hidden path="processInstanceId"/>
|
|
|
+ <form:hidden id="flag" path="act.flag"/>
|
|
|
+ <input type="hidden" id="opinion" name="act.comment" value="" maxlength="255">
|
|
|
+ <c:set var="status" value="${projectRecords.act.status}" />
|
|
|
+
|
|
|
+ <div class="form-group layui-row first">
|
|
|
+ <div class="form-group-label"><h2>项目合同信息</h2></div>
|
|
|
+ <div id="div1">
|
|
|
+ <div class="layui-item layui-col-sm12 lw6">
|
|
|
+ <label class="layui-form-label">合同编号:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" id="contractNum" readonly="true" class="form-control layui-input" value="${projectRecords.workContractInfo.contractNum}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">合同名称:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.workContractInfo.name}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6" id="c1">
|
|
|
+ <label class="layui-form-label double-line">合同金额(元):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="<fmt:formatNumber value="${projectRecords.workContractInfo.contractPrice}" pattern="#,##0.00#"/>"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6" id="c2" style="display: none">
|
|
|
+ <label class="layui-form-label">费率描述:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" id="otherDetails" class="form-control layui-input" value="${projectRecords.workContractInfo.otherDetails}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">委托方:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" id="clientName" readonly="true" class="form-control layui-input" value="${projectRecords.workContractInfo.client.name}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="divv2">
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">无合同</label>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div id="div3">
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">合同类别:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" style="background-color: #f1f1f1" class="form-control layui-input" value="${fns:getMainDictLabel(projectRecords.workContractInfo.contractTypeDoc, 'contract_info_type', '')}"/>
|
|
|
+<%-- <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.workContractInfo.constructionProjectTypeStr}"/>--%>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ <div class="form-group layui-row first">
|
|
|
+ <div class="form-group-label"><h2>项目基础信息</h2></div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">项目名称:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.projectName}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">项目编号:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <div class="input-group">
|
|
|
+ <form:input path="projectId" htmlEscape="false" readonly="true" class="form-control layui-input"/>
|
|
|
+ <span class="input-group-btn">
|
|
|
+ <label class="form-status"><c:choose><c:when test="${not empty projectRecords.projectStatus}">${fns:getDictLabel(projectRecords.projectStatus, 'rural_project_audit_state', '')}</c:when><c:otherwise>新添</c:otherwise></c:choose></label>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <%--<div class="layui-item layui-col-sm6 lw6">--%>
|
|
|
+ <%--<label class="layui-form-label">规模类型:</label>--%>
|
|
|
+ <%--<div class="layui-input-block">--%>
|
|
|
+ <%--<input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.scaleType}"/>--%>
|
|
|
+ <%--</div>--%>
|
|
|
+ <%--</div>--%>
|
|
|
+ <%--<div class="layui-item layui-col-sm6 lw6">--%>
|
|
|
+ <%--<label class="layui-form-label">规模单位:</label>--%>
|
|
|
+ <%--<div class="layui-input-block">--%>
|
|
|
+ <%--<input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.scaleUnit}"/>--%>
|
|
|
+ <%--</div>--%>
|
|
|
+ <%--</div>--%>
|
|
|
+ <%--<div class="layui-item layui-col-sm6 lw6">--%>
|
|
|
+ <%--<label class="layui-form-label">规模数量:</label>--%>
|
|
|
+ <%--<div class="layui-input-block">--%>
|
|
|
+ <%--<input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.scaleQuantity}"/>--%>
|
|
|
+ <%--</div>--%>
|
|
|
+ <%--</div>--%>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">项目所在地:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.province}-${projectRecords.city}-${projectRecords.county}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw7">
|
|
|
+ <label class="layui-form-label">投资性质:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <c:forEach items="${fns:getMainDictList('project_properties')}" var="v">
|
|
|
+ <c:if test="${v.value==projectRecords.projectProperties}">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${v.label}"/>
|
|
|
+ </c:if>
|
|
|
+ </c:forEach>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+<%-- <div class="layui-item layui-col-sm6 lw6">--%>
|
|
|
+<%-- <label class="layui-form-label">所在省份:</label>--%>
|
|
|
+<%-- <div class="layui-input-block">--%>
|
|
|
+<%-- <form:input path="province" htmlEscape="false" id="province" class="form-control layui-input" readonly="true"/>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- <div class="layui-item layui-col-sm6 lw6">--%>
|
|
|
+<%-- <label class="layui-form-label">所在地级市:</label>--%>
|
|
|
+<%-- <div class="layui-input-block">--%>
|
|
|
+<%-- <form:input path="city" htmlEscape="false" id="city" class="form-control layui-input" readonly="true"/>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- <div class="layui-item layui-col-sm6 lw6">--%>
|
|
|
+<%-- <label class="layui-form-label">所在区县:</label>--%>
|
|
|
+<%-- <div class="layui-input-block">--%>
|
|
|
+<%-- <form:input path="county" htmlEscape="false" id="areaName1" class="form-control layui-input" readonly="true"/>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">建设地点:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.projectSite}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">创建人:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.createBy.name}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">项目责任人:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" style="background-color: #f1f1f1" readonly="true" class="form-control layui-input" value="${projectRecords.leaderNameStr}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">所属部门:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" id="officeName" class="form-control layui-input" value="${projectRecords.officeName}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">项目负责人:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" style="background-color: #f1f1f1" readonly="true" class="form-control layui-input" value="${projectRecords.projectMasterName}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">工程类型:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <form:select path="engineeringType" disabled="true" style="background-color: #f1f1f1" class="form-control simple-select">
|
|
|
+ <form:options items="${engineeringInfo}" itemLabel="engineeringName" itemValue="id" htmlEscape="false"/>
|
|
|
+ </form:select>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">项目等级:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <c:forEach items="${fns:getMainDictListOnProjectAdvent('attachment_project_grade')}" var="v">
|
|
|
+ <input type="radio" disabled name="submitMoney" id="submitMoney" value="${v.value}" title="${v.label}" <c:if test="${projectRecords.submitMoney==v.value}">checked</c:if>>
|
|
|
+ </c:forEach>
|
|
|
+ <p style="color: red;font-size: 12px;">200万以上部队或政府项目及500万以上其它项目为A级,其余为B级</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">送审规模(万元):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <form:input path="submitScale" id="submitScale" readonly="true" maxlength="12" htmlEscape="false" onkeyup="wirteNum(this)" placeholder="请输入送审规模" class="form-control layui-input number"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">工作开始日期:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input class=" form-control layui-input " readonly="true" id="startDate" name="startDate" value="<fmt:formatDate value="${projectRecords.startDate}" pattern="yyyy-MM-dd"/>">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">工作结束日期:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input class=" form-control layui-input " readonly="true" id="endingDate" name="endingDate" value="<fmt:formatDate value="${projectRecords.endingDate}" pattern="yyyy-MM-dd"/>">
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">创建日期:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="<fmt:formatDate value="${projectRecords.createDate}" pattern="yyyy-MM-dd"/>"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">项目类别:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.attachmentProjectSort}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <%--<div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">工程结构:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.projectStructure}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">地上层数:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <form:input path="onGroundNum" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">底下层数:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <form:input path="underGroundNum" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">建筑面积或规模:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <form:input path="buildingScale" htmlEscape="false" class="form-control layui-input number" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">计量单位:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.measuringUnit}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label">工程用途:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectRecords.projectUse}"/>
|
|
|
+ </div>
|
|
|
+ </div>--%>
|
|
|
+ <%--<div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">预估总投资额(万元):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input value="<fmt:formatNumber value="${projectRecords.estimateTotalFees}" pattern="#,##0.00#"/>" htmlEscape="false" id="estimateTotalFees" class="form-control layui-input number" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">咨询标的额(万元):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input value="<fmt:formatNumber value="${projectRecords.totalFees}" pattern="#,##0.00#"/>" htmlEscape="false" id="totalFees" class="form-control layui-input number" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">其中土建造价(万元):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input value="<fmt:formatNumber value="${projectRecords.buildingFees}" pattern="#,##0.00#"/>" htmlEscape="false" id="buildingFees" class="form-control layui-input" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">其中安装造价(万元):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input value="<fmt:formatNumber value="${projectRecords.installFees}" pattern="#,##0.00#"/>" htmlEscape="false" id="installFees" class="form-control layui-input" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">其中土建百分比(%):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <form:input path="buildingPercent" htmlEscape="false" id="buildingPercent" class="form-control layui-input" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">其中安装百分比(%):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <form:input path="installPercent" htmlEscape="false" id="installPercent" class="form-control layui-input" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>--%>
|
|
|
+ <%--<div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">施工单位:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <form:input path="constructionUnit" htmlEscape="false" id="installPercent" class="form-control layui-input" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">施工方联系方式:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <form:input path="constructionLinkman" htmlEscape="false" id="installPercent" class="form-control layui-input" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>--%>
|
|
|
+ <%--<div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">单位造价(元):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input value="<fmt:formatNumber value="${projectRecords.unitFees}" pattern="#,##0.00#"/>" htmlEscape="false" id="unitFees" class="form-control layui-input" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">土建单位造价(元):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input value="<fmt:formatNumber value="${projectRecords.buildingUnitFees}" pattern="#,##0.00#"/>" htmlEscape="false" id="buildingUnitFees" class="form-control layui-input" readonly="true"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6">
|
|
|
+ <label class="layui-form-label double-line">安装单位造价(元):</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <input value="<fmt:formatNumber value="${projectRecords.installUnitFees}" pattern="#,##0.00#"/>" htmlEscape="false" id="installUnitFees" class="form-control layui-input" readonly="readonly"/>
|
|
|
+ </div>
|
|
|
+ </div>--%>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6 with-textarea">
|
|
|
+ <label class="layui-form-label">工程概况:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <textarea htmlEscape="false" rows="4" readonly="true" maxlength="1000" class="form-control" >${projectRecords.projectDesc}</textarea>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="layui-item layui-col-sm6 lw6 with-textarea">
|
|
|
+ <label class="layui-form-label">特殊要求:</label>
|
|
|
+ <div class="layui-input-block">
|
|
|
+ <textarea htmlEscape="false" rows="4" readonly="true" maxlength="1000" class="form-control" >${projectRecords.remarks}</textarea>
|
|
|
+ </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" >
|
|
|
+ <table id="contentTable" class="table table-bordered table-condensed no-bottom-margin details">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th class="hide"></th>
|
|
|
+ <th width="25%">委托方</th>
|
|
|
+ <th width="25%">联系人姓名</th>
|
|
|
+ <th width="25%">联系方式1</th>
|
|
|
+ <th width="25%">联系方式2</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="workClientLinkmanList">
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <script type="text/template" id="workClientLinkmanTpl">//<!--
|
|
|
+ <tr id="workClientLinkmanList{{idx}}">
|
|
|
+ <td class="hide">
|
|
|
+ <input id="workClientLinkmanList{{idx}}_id" name="workClientLinkmanList[{{idx}}].id" type="hidden" value="{{row.id}}"/>
|
|
|
+ <input id="workClientLinkmanList{{idx}}_delFlag" name="workClientLinkmanList[{{idx}}].delFlag" type="hidden" value="0"/>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ {{row.clientId.name}}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ {{row.name}}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ {{row.linkPhone}}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ {{row.linkMobile}}
|
|
|
+ </td>
|
|
|
+ </tr>//-->
|
|
|
+ </script>
|
|
|
+ </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" >
|
|
|
+ <table id="contentTable1" class="table table-bordered table-condensed no-bottom-margin details">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th class="hide"></th>
|
|
|
+ <th width="25%">施工方单位名称</th>
|
|
|
+ <th width="25%">联系人姓名</th>
|
|
|
+ <th width="25%">联系方式1</th>
|
|
|
+ <th width="25%">联系方式2</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="workConstructionLinkmanList">
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <script type="text/template" id="workConstructionLinkmanTpl">//<!--
|
|
|
+ <tr id="workConstructionLinkmanList{{idx}}">
|
|
|
+ <td class="hide">
|
|
|
+ <input id="workConstructionLinkmanList{{idx}}_id" name="workConstructionLinkmanList[{{idx}}].id" type="hidden" value="{{row.id}}"/>
|
|
|
+ <input id="workConstructionLinkmanList{{idx}}_delFlag" name="workConstructionLinkmanList[{{idx}}].delFlag" type="hidden" value="0"/>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ {{row.clientId.name}}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ {{row.name }}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ {{row.linkPhone}}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ {{row.linkMobile}}
|
|
|
+ </td>
|
|
|
+ </tr>//-->
|
|
|
+ </script>
|
|
|
+ </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" >
|
|
|
+ <table id="upTable" class="table table-bordered table-condensed details">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th width="25%">报告编号</th>
|
|
|
+ <th width="25%">报告名称</th>
|
|
|
+ <th width="20%">工作内容类型</th>
|
|
|
+ <th width="10%">签章类型</th>
|
|
|
+ <th width="10%">创建日期</th>
|
|
|
+ <th width="10%">状态</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <c:choose>
|
|
|
+ <c:when test="${not empty projectRecords.projectReportData}">
|
|
|
+ <c:forEach items="${projectRecords.projectReportData}" var="projectReportData" varStatus="index">
|
|
|
+ <tr>
|
|
|
+ <td><a title="${projectReportData.number}" href="javascript:void(0)" onclick="openDialogView('查看报告详情', '${ctx}/projectcontentinfo/projectcontentinfo/form1?id=${projectReportData.id}','95%', '95%')">
|
|
|
+ ${projectReportData.number}
|
|
|
+ </a></td>
|
|
|
+ <td>
|
|
|
+ ${projectReportData.name}
|
|
|
+ </td>
|
|
|
+ <td title="${fns:getContentTypeName(projectReportData.type,"")}">
|
|
|
+ ${fns:getContentTypeName(projectReportData.type,"")}
|
|
|
+ </td>
|
|
|
+ <td title="${projectReportData.reportType}">
|
|
|
+ ${projectReportData.reportType}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <fmt:formatDate value="${projectReportData.reportDate}" pattern="yyyy-MM-dd"/>
|
|
|
+ </td>
|
|
|
+ <td class="op-td">
|
|
|
+ <%–<c:choose>–%>
|
|
|
+ <%–<c:when test="${empty projectReportData.status || projectReportData.status eq 1}">–%>
|
|
|
+ <%–<div style="text-align: center">–%>
|
|
|
+ <%–<a href="javascript:void(0)" class="op-btn op-btn-trace" >${fns:getDictLabel(projectReportData.status, 'audit_state', '')}</a>–%>
|
|
|
+ <%–</div>–%>
|
|
|
+ <%–</c:when>–%>
|
|
|
+ <%–<c:otherwise>–%>
|
|
|
+ <%–<div style="text-align: center">–%>
|
|
|
+ <%–<a href="javascript:void(0)" onclick="openDialogView('流程追踪', '${ctx}/projectcontentinfo/projectcontentinfo/getProcessOne?id=${id}&projectReportData.id=${projectReportData.id}&type=1','95%','95%')" class="op-btn op-btn-trace" >${fns:getDictLabel(projectReportData.status, 'audit_state', '')}</a>–%>
|
|
|
+ <%–</div>–%>
|
|
|
+ <%–</c:otherwise>–%>
|
|
|
+ <%–</c:choose>–%>
|
|
|
+ <div style="text-align: center" id="status_td_${index.index+1}">
|
|
|
+ </div>
|
|
|
+ <script>
|
|
|
+ initRecordStatus(${index.index+1},"${id}","${projectReportData.id}","${projectReportData.status}");
|
|
|
+ </script>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </c:forEach>
|
|
|
+ </c:when>
|
|
|
+ <c:otherwise>
|
|
|
+ <tr>
|
|
|
+ <td colspan="7">
|
|
|
+ 暂无数据
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </c:otherwise>
|
|
|
+ </c:choose>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>--%>
|
|
|
+ <div class="form-group layui-row">
|
|
|
+ <div class="form-group-label"><h2>项目计划列表</h2></div>
|
|
|
+ <div class="layui-item layui-col-sm12 lw7">
|
|
|
+ <div class="layui-item nav-btns">
|
|
|
+<%-- <div class="layui-item nav-btns" style="padding-left:0px;">--%>
|
|
|
+<%-- <a class="nav-btn nav-btn-add"--%>
|
|
|
+<%-- onclick="addRow('#projectPlanList', workClientBankRowIdx, workClientBankTpl);workClientBankRowIdx = workClientBankRowIdx + 1;"--%>
|
|
|
+<%-- title="新增"><i class="fa fa-plus"></i> 新增</a>--%>
|
|
|
+<%-- <shiro:hasPermission name="project:projectPlan:export">--%>
|
|
|
+<%-- <a class="nav-btn nav-btn-export" title="导出" onclick="return confirmx('确认要导出该项目计划列表吗?', '${ctx}/project/projectPlan/export?id=${projectRecords.id}');"><i class="fa fa-file-excel-o"></i> 导出</a>--%>
|
|
|
+<%-- </shiro:hasPermission>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+ <table id="bankinfo" class="table table-bordered table-condensed can-edit">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th width="60px">编号</th>
|
|
|
+ <th >任务阶段</th>
|
|
|
+ <th >计划开始时间</th>
|
|
|
+ <th >计划结束时间</th>
|
|
|
+ <th >提醒人</th>
|
|
|
+ <th >完成人</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="projectPlanList">
|
|
|
+
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <script type="text/template" id="workClientBankTpl">//<!--
|
|
|
+ <tr id="projectPlanList{{idx}}">
|
|
|
+ <td class="hide">
|
|
|
+ <input id="projectPlanList{{idx}}_id" name="projectPlanList[{{idx}}].id" type="hidden" readonly="true" value="{{row.id}}"/>
|
|
|
+ <input id="projectPlanList{{idx}}_delFlag" name="projectPlanList[{{idx}}].delFlag" type="hidden" readonly="true" value="0"/>
|
|
|
+ <input id="projectPlanList{{idx}}_remindId" name="projectPlanList[{{idx}}].remindId" type="hidden" readonly="true" value="{{row.remindId}}"/>
|
|
|
+ </td>
|
|
|
+
|
|
|
+ <td width="60px">
|
|
|
+ <input id="projectPlanList{{idx}}_costNum" name="projectPlanList[{{idx}}].costNum" readonly="readonly" style="text-align: center" value="{{idx}}" type="text" class="form-control contentDetail"/>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <input id="projectPlanList{{idx}}_projectStage" name="projectPlanList[{{idx}}].projectStage" readonly="true" list ="num" title="{{row.projectStage}}" value="{{row.projectStage}}" class="form-control required"/>
|
|
|
+ </td>
|
|
|
+
|
|
|
+ <td>
|
|
|
+ <input lay-verify="date" readonly="true" placeholder="yyyy-MM-dd" autocomplete="off" id="projectPlanList{{idx}}_beginDate" name="projectPlanList[{{idx}}].beginDate" style="text-align: center" type="text" value="{{row.beginDate}}" class="form-control required datetime"/>
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <input lay-verify="date" readonly="true" placeholder="yyyy-MM-dd" autocomplete="off" id="projectPlanList{{idx}}_endDate" name="projectPlanList[{{idx}}].endDate" style="text-align: center" type="text" value="{{row.endDate}}" class="form-control required datetime"/>
|
|
|
+ </td>
|
|
|
+
|
|
|
+ <td>
|
|
|
+ <input id="projectPlanList{{idx}}_remindName" name="remindName" readonly="readonly" style="text-align: center" value="{{row.remindName}}" type="text" class="form-control contentDetail"/>
|
|
|
+<%-- <sys:treeselecttPlanUser id="projectPlanList{{idx}}_remindName" name="remindName" value="${projectRecords.leaderIds}" labelName="projectPlanList[{{idx}}].remindName" labelValue="{{row.remindName}}"--%>
|
|
|
+<%-- title="用户" url="/sys/office/treeDataByPlan?type=3&projectId=${projectRecords.id}" cssClass="form-control required layui-input" allowClear="true" notAllowSelectParent="true" disabled="true"/>--%>
|
|
|
+ </td>
|
|
|
+
|
|
|
+ <td>
|
|
|
+ <input id="projectPlanList{{idx}}_finishName" name="projectPlanList[{{idx}}].finishId" readonly="readonly" style="text-align: center" value="{{row.finishName}}" type="text" class="form-control contentDetail"/>
|
|
|
+<%-- <sys:treeselecttPlanUser id="projectPlanList{{idx}}_finishName" name="projectPlanList[{{idx}}].finishId" value="${projectRecords.leaderIds}" labelName="projectPlanList[{{idx}}].finishName" labelValue="{{row.finishName}}"--%>
|
|
|
+<%-- title="用户" url="/sys/office/treeDataAll?type=3" cssClass="form-control required layui-input" allowClear="true" notAllowSelectParent="true" disabled="true" />--%>
|
|
|
+ </td>
|
|
|
+
|
|
|
+<%-- <td class="text-center op-td" width="10">--%>
|
|
|
+<%-- {{#delBtn}}<span class="op-btn op-btn-delete" onclick="delRow(this, '#projectPlanList{{idx}}')" title="删除"><i class="fa fa-trash"></i> 删除</span>{{/delBtn}}--%>
|
|
|
+<%-- </td>--%>
|
|
|
+ </tr>//-->
|
|
|
+ </script>
|
|
|
+ </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" >--%>
|
|
|
+<%-- <table id="listAttachment" class="table table-bordered table-condensed no-bottom-margin details">--%>
|
|
|
+<%-- <thead>--%>
|
|
|
+<%-- <tr>--%>
|
|
|
+<%-- <th width="25%">文件预览</th>--%>
|
|
|
+<%-- <th width="25%">上传人</th>--%>
|
|
|
+<%-- <th width="25%">上传时间</th>--%>
|
|
|
+<%-- <th width="25%">操作</th>--%>
|
|
|
+<%-- </tr>--%>
|
|
|
+<%-- </thead>--%>
|
|
|
+<%-- <tbody id="file_attachment">--%>
|
|
|
+<%-- <c:forEach items="${projectRecords.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 href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','95%','95%','1')">${workClientAttachment.attachmentName}</a></td>--%>
|
|
|
+<%-- </c:when>--%>
|
|
|
+<%-- <c:otherwise>--%>
|
|
|
+<%-- <td><a href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','95%','95%')">${workClientAttachment.attachmentName}</a></td>--%>
|
|
|
+<%-- </c:otherwise>--%>
|
|
|
+<%-- </c:choose>--%>
|
|
|
+<%-- </c:otherwise>--%>
|
|
|
+<%-- </c:choose>--%>
|
|
|
+<%-- <td>${workClientAttachment.createBy.name}</td>--%>
|
|
|
+<%-- <td><fmt:formatDate value="${workClientAttachment.createDate}" pattern="yyyy-MM-dd"/></td>--%>
|
|
|
+<%-- <td class="op-td">--%>
|
|
|
+<%-- <a href="javascript:location.href=encodeURI('${ctx}/workcontractinfo/workContractInfo/downLoadAttach?file=${workClientAttachment.url}');" class="op-btn op-btn-download"><i class="fa fa-download"></i> 下载</a>--%>
|
|
|
+<%-- </td>--%>
|
|
|
+<%-- </tr>--%>
|
|
|
+<%-- </c:forEach>--%>
|
|
|
+<%-- </tbody>--%>
|
|
|
+<%-- </table>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- <div class="form-group layui-row">--%>
|
|
|
+<%-- <div class="layui-item layui-col-sm8 lw6 with-textarea">--%>
|
|
|
+<%-- <div class="layui-input-block" style="margin-left:10px;position: relative">--%>
|
|
|
+<%-- <form:textarea placeholder="请输入意见:" path="act.comment" id="opinion" class="form-control" rows="4" cssStyle="height: 200px;" maxlength="127" />--%>
|
|
|
+<%-- <a id="clearOpinon" class="layui-btn" style="position: absolute;bottom: 10px;right: 20px;">清空</a>--%>
|
|
|
+<%-- <input type="file" name="upload_files" style="display: none;">--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- <div class="layui-item layui-col-sm4 lw6 with-textarea">--%>
|
|
|
+<%-- <div class="layui-input-block" style="margin-left:10px;">--%>
|
|
|
+<%-- <div style="padding: 5px 0px;"><input type="checkbox" lay-filter="raopinion" name="sh" value="同意" title="同意" style="cursor:pointer" class="apen"/></div>--%>
|
|
|
+<%-- <div style="padding: 5px 0px;"><input type="checkbox" lay-filter="raopinion" name="sh" value="不同意" title="不同意" style="cursor:pointer" class="apen"/></div>--%>
|
|
|
+<%-- <div style="padding: 5px 0px;"><input type="checkbox" lay-filter="raopinion" name="sh" value="请领导审核" title="请领导审核" style="cursor:pointer" class="apen"/></div>--%>
|
|
|
+<%-- <div style="padding: 5px 0px;">--%>
|
|
|
+<%-- <form:select path="act.comment" id="auditOpinion" lay-filter="opinion" lay-verify="opinion" class="form-control simple-select">--%>
|
|
|
+<%-- <form:option value=""/>--%>
|
|
|
+<%-- <form:options items="${fns:getMainDictListOnProjectAdvent('audit_opinion_template')}" itemLabel="label" itemValue="label" htmlEscape="false"/>--%>
|
|
|
+<%-- </form:select>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+<%-- </div>--%>
|
|
|
+
|
|
|
+ <script>
|
|
|
+ var workClientLinkmanRowIdx = 0, workClientLinkmanTpl = $("#workClientLinkmanTpl").html().replace(/(\/\/\<!\-\-)|(\/\/\-\->)/g,"");
|
|
|
+ var workConstructionLinkmanRowIdx = 0, workConstructionLinkmanTpl = $("#workConstructionLinkmanTpl").html().replace(/(\/\/\<!\-\-)|(\/\/\-\->)/g,"");
|
|
|
+ $(document).ready(function() {
|
|
|
+ var data = ${fns:toJson(projectRecords.workClientLinkmanList)};
|
|
|
+ for (var i=0; i<data.length; i++){
|
|
|
+ addRow('#workClientLinkmanList', workClientLinkmanRowIdx, workClientLinkmanTpl, data[i]);
|
|
|
+ workClientLinkmanRowIdx = workClientLinkmanRowIdx + 1;
|
|
|
+ }
|
|
|
+ var dataBank = ${fns:toJson(projectRecords.workConstructionLinkmanList)};
|
|
|
+ for (var i=0; i<dataBank.length; i++){
|
|
|
+ addRow('#workConstructionLinkmanList', workConstructionLinkmanRowIdx, workConstructionLinkmanTpl, dataBank[i]);
|
|
|
+ workConstructionLinkmanRowIdx = workConstructionLinkmanRowIdx + 1;
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+ layui.use('form', function () {
|
|
|
+ var form = layui.form;
|
|
|
+ form.render();
|
|
|
+ });
|
|
|
+ function f1(row) {
|
|
|
+ // window.parent.document.getElementById('opinion').value = row;
|
|
|
+ $("#opinion").val(row)
|
|
|
+ }
|
|
|
+ function openDialogre(title,url,width,height,target,buttons) {
|
|
|
+ if (navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)) {//如果是移动端,就使用自适应大小弹窗
|
|
|
+ width = 'auto';
|
|
|
+ height = 'auto';
|
|
|
+ } else {//如果是PC端,根据用户设置的width和height显示。
|
|
|
+ }
|
|
|
+ var split = buttons.split(",");
|
|
|
+ top.layer.open({
|
|
|
+ type: 2,
|
|
|
+ area: [width, height],
|
|
|
+ title: title,
|
|
|
+ maxmin: true, //开启最大化最小化按钮
|
|
|
+ skin: 'three-btns',
|
|
|
+ content: url,
|
|
|
+ btn: split,
|
|
|
+ btn1: function(index, layero){
|
|
|
+ top.layer.close(index)
|
|
|
+ document.getElementById('iframe').contentWindow.location.reload();
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
+ </script>
|
|
|
+
|
|
|
+ <div class="form-group layui-row">
|
|
|
+ <div class="form-group-label"><h2>项目组成员列表</h2></div>
|
|
|
+ <div class="layui-item layui-col-xs12 form-table-container" >
|
|
|
+ <table id="usersListTable" class="table table-bordered table-condensed no-bottom-margin details">
|
|
|
+ <thead>
|
|
|
+ <tr>
|
|
|
+ <th width="25%">姓名</th>
|
|
|
+ <th width="25%">部门</th>
|
|
|
+ <th width="25%">职级</th>
|
|
|
+ <th width="55px;">状态</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody id="usersList">
|
|
|
+ <c:if test="${not empty projectRecords.projectMembers}">
|
|
|
+ <c:forEach items="${projectRecords.projectMembers}" var="user">
|
|
|
+ <tr id="${user.id}">
|
|
|
+ <td>
|
|
|
+ ${user.name}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ ${user.office.name}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ ${user.basicInfo.jobGrade.name}
|
|
|
+ </td>
|
|
|
+ <td>
|
|
|
+ <c:choose>
|
|
|
+ <c:when test="${user.delFlag == 0}">
|
|
|
+ 正常
|
|
|
+ </c:when>
|
|
|
+ <c:otherwise>
|
|
|
+ 移除
|
|
|
+ </c:otherwise>
|
|
|
+ </c:choose>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </c:forEach>
|
|
|
+ </c:if>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ </form:form>
|
|
|
+ <div class="form-group-label">
|
|
|
+ <div style="float: right"> <a href="javascript:void(0)" style='background-color: #FFB800' onclick="openDialogre('个人模板列表', '${ctx}/auditTemplate/auditTemplate/templateList?identification=${identification}&name=${identificationName}','80%', '70%','','关闭')" class="nav-btn layui-btn layui-btn-sm" ><i class="fa fa-file-excel-o"></i> 审核意见模板列表</a></div>
|
|
|
+ <h2>审批意见</h2>
|
|
|
+ </div>
|
|
|
+ <iframe id="iframe" src="${ctx}/auditTemplate/auditTemplate/iframeView?identification=${identification}" name="listresult" frameborder="0" align="left" width="100%" height="300" scrolling="value"></iframe>
|
|
|
+ <div class="form-group layui-row">
|
|
|
+ <div class="form-group-label"><h2>审批流程</h2></div>
|
|
|
+ <div class="layui-item layui-col-xs12 form-table-container" >
|
|
|
+ <act:flowChart procInsId="${processInstanceId}"/>
|
|
|
+ <act:histoicFlow procInsId="${processInstanceId}"/>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+</body>
|
|
|
+</html>
|