1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {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">不含增值税测算成本</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>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr style="border: 1px">
- <td class='text-left nowrap'>{$vo.subjects|default=''}</td>
- <td class='text-left nowrap'>{$vo.costs_are_excluded_interval|default='-'}</td>
- <td class='text-left nowrap'>{$vo.costs_are_excluded_arithmetic_mean|default=''}</td>
- <td class='text-left nowrap'>{$vo.costs_are_excluded_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.total_vat_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.total_vat_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.total_vat_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.measurement_cost_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.measurement_cost_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.measurement_cost_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.unilateral_cost_indicator_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.unilateral_cost_indicator_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.unilateral_cost_indicator_valid_sample_size|default=''}</td>
- <td class='text-left nowrap'>{$vo.single_cost_indicator_interval|default=''}</td>
- <td class='text-left nowrap'>{$vo.single_cost_indicator_arithmetic_mean|default='-'}</td>
- <td class='text-left nowrap'>{$vo.single_cost_indicator_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("see")}?subjects={$vo.subjects}&ids={$ids}'>查 看</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/main_project/download")}?ids=' +ids;
- }
- </script>
- {/block}
|