index.ejs 821 B

12345678910111213141516171819
  1. <% if (template.code === 'guangyuan') { %>
  2. <% include ./guangyuan.ejs %>
  3. <% } else { %>
  4. <div class="panel-content project-screen-view-page">
  5. <div class="project-screen-view-head">
  6. <div><strong><%- ctx.session.sessionProject.name %></strong><span><%- screen.name %></span></div>
  7. <% include ./switcher.ejs %>
  8. </div>
  9. <div class="project-screen-live <%- template.previewClass %>">
  10. <div class="project-screen-live-title"><%- screen.name %></div>
  11. <div class="project-screen-live-grid">
  12. <section><h6>项目概况</h6><div></div></section>
  13. <section><h6>进度趋势</h6><div></div></section>
  14. <section><h6>合同执行</h6><div></div></section>
  15. <section><h6>资金情况</h6><div></div></section>
  16. </div>
  17. </div>
  18. </div>
  19. <% } %>