12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {extend name='main'}
- {block name="button"}
- <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>
- {/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'>建面单方成本(元/m2)(含税)</th>
- <th class='text-left nowrap'>总价(万元)(含税)</th>
- <th class='text-left nowrap'>建面单方成本(元/m2)(不含税)</th>
- <th class='text-left nowrap'>总价(万元)(不含税)</th>
- <th class='text-left nowrap'>可售单方成本(元/m2)(含税)</th>
- <th class='text-left nowrap'>可售单方成本(元/m2)(不含税)</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'>预留指标1</th>
- <th class='text-left nowrap'>预留指标2</th>
- <th class='text-left nowrap'>备注</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr data-dbclick>
- <td class='text-left nowrap'>{$vo.number|default=''}</td>
- <td class='text-left nowrap'>{$vo.cost_project|default='-'}</td>
- <td class='text-left nowrap'>{$vo.area_calculating_aperture|default='-'}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost|default='0'}</td>
- <td class='text-left nowrap'>{$vo.total_price_included|default='0'}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost_excluding|default='0'}</td>
- <td class='text-left nowrap'>{$vo.total_price_included_excluding|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.quantities|default='0'}</td>
- <td class='text-left nowrap'>{$vo.calculating_unit|default='0'}</td>
- <td class='text-left nowrap'>{$vo.unilateral_content|default='0'}</td>
- <td class='text-left nowrap'>{$vo.unilateral_content_excluding|default='0'}</td>
- <td class='text-left nowrap'>{$vo.saleable_single_party_tax|default='0'}</td>
- <td class='text-left nowrap'>{$vo.saleable_single_party_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}
|