<% if (ctx.material.status === auditConst.status.uncheck) { %> <% if (ctx.session.sessionUser.accountId === ctx.material.user_id) { %> 上报审批 <% } %> <% } else if (ctx.material.status === auditConst.status.checking) { %> <% if (ctx.material.curAuditor && ctx.material.curAuditor.aid === ctx.session.sessionUser.accountId) { %> 审批通过 审批退回 <% } else { %> 审批中 <% } %> <% } else if (ctx.material.status === auditConst.status.checked) { %> 审批完成 <% } else if (ctx.material.status === auditConst.status.checkNo) { %> 审批退回 <% if (ctx.session.sessionUser.accountId === ctx.material.user_id) { %> 重新上报 <% } %> <% } %>