1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {extend name='main'}
- {block name="button"}
- {if auth("add")}
- <button class="layui-btn" style="height: 30px;line-height:28px;color:#FFFFFF;background-color: #DC2219;border: 1px solid #C9C9C9 " type='button' onclick="window.history.back()">返 回</button>
- {/if}
- {/block}
- {block name="content"}
- <div class="think-box-shadow">
- <table class="layui-table margin-top-10">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap'>序号</th>
- <th class='text-left nowrap'>成本测算科目</th>
- <th class='text-left nowrap'>不含增值税测算成本 (万元)</th>
- <th class='text-left nowrap'>增值税总额</th>
- <th class='text-left nowrap'>含增值税测算成本</th>
- <th class='text-left nowrap'>建筑面积</th>
- <th class='text-left nowrap'>建面单方成本指标 (不含税)</th>
- <th class='text-left nowrap'>建面单方成本指标 (含税)</th>
- <th class='text-left nowrap'>可售单方成本指标(不含税)</th>
- <th class='text-left nowrap'>可售单方成本指标(含税)</th>
- <th class='text-left nowrap'>备注</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='text-left nowrap' style="background-color:#f2f2f2">{$vo.number|default=''}</td>
- <td class='text-left nowrap'>{$vo.subjects|default='0'}</td>
- <td class='text-left nowrap'>{$vo.costs_are_excluded|default='0'}</td>
- <td class='text-left nowrap'>{$vo.total_vat|default='0'}</td>
- <td class='text-left nowrap'>{$vo.measurement_cost|default='0'}</td>
- <td class='text-left nowrap'>{$vo.area|default='0'}</td>
- <td class='text-left nowrap'>{$vo.unilateral_cost_indicator|default='0'}</td>
- <td class='text-left nowrap'>{$vo.single_cost_indicator|default='0'}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost_tax|default='0'}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost_no_tax|default='0'}</td>
- <td class='text-left nowrap'>{$vo.note|default='-'}</td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|