返回<%- (ctx.constructionTender.name.length > 20 ? ctx.constructionTender.name.substring(0,20) + '...' : ctx.constructionTender.name) %>
日志状态:
填报人:
<% if (reportFlag) { %> 新建日志 批量提交 <% } %>
<% for (const log of logList) { %> <% } %>
日志编号 创建时间 时间/周期 日志类型 填报人 审签人 日志状态 操作
<%- log.code %> <%- moment(log.create_time).format('YYYY-MM-DD') %> <%- log.period %> <%- constructionConst.type[log.type] %> <%- log.report_username %> <%- log.shenpi_username %> <%- constructionConst.statusString[log.status] %> <% if (ctx.session.sessionUser.accountId === log.shenpi_uid && log.status === constructionConst.status.checking) { %> 审签 <% } %> <% if (ctx.session.sessionUser.accountId === log.report_uid && log.status === constructionConst.status.uncheck) { %> 提交 删除 <% } %>
<% include ../layout/page.ejs %>