12345678910111213141516171819202122232425262728 |
- <div class="panel-content">
- <div class="panel-title fluid">
- <div class="title-main d-flex justify-content-between">
- <div>动态投资</div>
- </div>
- </div>
- <div class="content-wrap">
- <div class="sjs-height-0" style="background-color: #fff">
- <div class="c-body">
- <% if (!budgetList || budgetList.length === 0) { %>
- <div class="jumbotron">
- <h3 class="display-6">还没有项目数据</h3>
- </div>
- <% } else { %>
- <table class="table table-hover table-bordered">
- <tr class="text-center"><th style="min-width: 200px">项目名称</th><th>概预算标准</th><th>创建时间</th><th>投资估算</th><th>初步概算</th><th>施工图预算</th><th>操作</th></tr>
- <tbody id="budgetList">
- </tbody>
- </table>
- <% } %>
- </div>
- </div>
- </div>
- </div>
- <script>
- const budgetList = JSON.parse(unescape('<%- escape(JSON.stringify(budgetList)) %>'));
- const category = JSON.parse(unescape('<%- escape(JSON.stringify(categoryData)) %>'));
- </script>
|