|
@@ -714,10 +714,18 @@
|
|
return "<font style = 'font-size:14px;font-weight:500;'>"+d.client+"</font>";
|
|
return "<font style = 'font-size:14px;font-weight:500;'>"+d.client+"</font>";
|
|
}}
|
|
}}
|
|
,{field:'createName',align:'center', title: '登记人', width:80}
|
|
,{field:'createName',align:'center', title: '登记人', width:80}
|
|
- ,{field: 'createDate', align:'center', title: '创建日期/打包时间',width:100,templet: function(d){
|
|
|
|
|
|
+ ,{field: 'createDate', align:'center', title: '创建日期',width:100,templet: function(d){
|
|
var date=d.createDate;
|
|
var date=d.createDate;
|
|
return "<font style = 'font-size:14px;font-weight:500;'>"+layui.util.toDateString(date,'yyyy-MM-dd')+"</font>";
|
|
return "<font style = 'font-size:14px;font-weight:500;'>"+layui.util.toDateString(date,'yyyy-MM-dd')+"</font>";
|
|
}}
|
|
}}
|
|
|
|
+ ,{field: 'prdAuditDate', align:'center', title: '质量复核通过时间',width:140,templet: function(d){
|
|
|
|
+ var prdAuditDate=d.prdAuditDate;
|
|
|
|
+ if(prdAuditDate != null && prdAuditDate != undefined && '' != prdAuditDate){
|
|
|
|
+ return "<font style = 'font-size:14px;font-weight:500;'>"+layui.util.toDateString(prdAuditDate,'yyyy-MM-dd')+"</font>";
|
|
|
|
+ }else{
|
|
|
|
+ return "<font style = 'font-size:14px;font-weight:500;'></font>";
|
|
|
|
+ }
|
|
|
|
+ }}
|
|
,{field: 'submitMoneyStr', align:'center', title: '项目等级',width:100,templet: function(d){
|
|
,{field: 'submitMoneyStr', align:'center', title: '项目等级',width:100,templet: function(d){
|
|
return "<font style = 'font-size:14px;'>"+d.submitMoneyStr+"</font>";
|
|
return "<font style = 'font-size:14px;'>"+d.submitMoneyStr+"</font>";
|
|
}}
|
|
}}
|
|
@@ -1125,6 +1133,7 @@
|
|
,"submitMoney":"${projectRecords.submitMoney}"
|
|
,"submitMoney":"${projectRecords.submitMoney}"
|
|
,"newRecordTwoNotifyFlag":"${projectRecords.newRecordTwoNotifyFlag}"
|
|
,"newRecordTwoNotifyFlag":"${projectRecords.newRecordTwoNotifyFlag}"
|
|
,"newRecordNotifyFlag":"${projectRecords.newRecordNotifyFlag}"
|
|
,"newRecordNotifyFlag":"${projectRecords.newRecordNotifyFlag}"
|
|
|
|
+ ,"prdAuditDate":"${projectRecords.prdAuditDate}"
|
|
,"falg":
|
|
,"falg":
|
|
<c:choose>
|
|
<c:choose>
|
|
<c:when test="${fns:getUser().id == projectRecords.leaderIds || fns:getUser().id eq projectRecords.createBy.id}">
|
|
<c:when test="${fns:getUser().id == projectRecords.leaderIds || fns:getUser().id eq projectRecords.createBy.id}">
|