123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- {extend name='main'}
- {block name="button"}
- {if auth("contrast")}
- <button class="layui-btn layui-btn-sm layui-btn-primary layui-bg-red" onclick="getIds()" >导出</button>
- {/if}
- <button class="layui-btn" style="height: 30px;line-height:28px;background-color: snow;color: #333;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">
- <input type="hidden" name="ids" id="ids" value="{$ids}">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap' rowspan="2">成本项目</th>
- <th class='text-center nowrap' colspan="3">建面单方成本(元/m2)(含税)</th>
- <th class='text-center nowrap' colspan="3">总价(万元)(含税)</th>
- <th class='text-center nowrap' colspan="3">建面单方成本(元/m2)(不含税)</th>
- <th class='text-center nowrap' colspan="3">总价(万元)(不含税)</th>
- <th class='text-center nowrap' colspan="3">工程量</th>
- <th class='text-center nowrap' colspan="3">单方含量(含税)</th>
- <th class='text-center nowrap' colspan="3">单方含量(不含税)</th>
- <th class='text-center nowrap' rowspan="2">操作</th>
- </tr>
- <tr style="border: 1px">
- <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>
- <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 style="border: 1px">
- <td class='text-left nowrap'>{$vo.cost_project|default=''}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost_interval|default='-'}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost_arithmetic_mean|default=''}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.total_price_included_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.total_price_included_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.total_price_included_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost_excluding_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost_excluding_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.single_party_cost_excluding_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.total_price_included_excluding_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.total_price_included_excluding_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.total_price_included_excluding_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.quantities_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.quantities_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.quantities_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.unilateral_content_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.unilateral_content_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.unilateral_content_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.unilateral_content_excluding_excluding_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.unilateral_content_excluding_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.unilateral_content_excluding_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>
- {if auth("look")}
- <a data-dbclick class="layui-btn layui-btn-sm layui-bg-red" data-title="查看" data-open='{:url("look")}'>查 看</a>
- {/if}
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- <script>
- function getIds()
- {
- var ids = $("#ids").val();
- window.location = '{:url("admin/child_project/download")}?ids=' +ids;
- }
- </script>
- {/block}
|