| 12345678910111213141516171819 |
- <% if (template.code === 'guangyuan') { %>
- <% include ./guangyuan.ejs %>
- <% } else { %>
- <div class="panel-content project-screen-view-page">
- <div class="project-screen-view-head">
- <div><strong><%- ctx.session.sessionProject.name %></strong><span><%- screen.name %></span></div>
- <% include ./switcher.ejs %>
- </div>
- <div class="project-screen-live <%- template.previewClass %>">
- <div class="project-screen-live-title"><%- screen.name %></div>
- <div class="project-screen-live-grid">
- <section><h6>项目概况</h6><div></div></section>
- <section><h6>进度趋势</h6><div></div></section>
- <section><h6>合同执行</h6><div></div></section>
- <section><h6>资金情况</h6><div></div></section>
- </div>
- </div>
- </div>
- <% } %>
|