contrast1.html 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {extend name='main'}
  2. {block name="button"}
  3. {if auth("contrast")}
  4. <button class="layui-btn layui-btn-sm layui-btn-primary layui-bg-red" onclick="getIds()" >导出</button>
  5. {/if}
  6. <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>
  7. {/block}
  8. {block name="content"}
  9. <div class="think-box-shadow">
  10. <table class="layui-table margin-top-10">
  11. <input type="hidden" name="ids" id="ids" value="{$ids}">
  12. {notempty name='list'}
  13. <thead>
  14. <tr>
  15. <th class='text-left nowrap' rowspan="2">成本预算科目</th>
  16. <th class='text-center nowrap' colspan="3">不含增值税测算成本</th>
  17. <th class='text-center nowrap' colspan="3">增值税总额</th>
  18. <th class='text-center nowrap' colspan="3">含增值税测算成本</th>
  19. <th class='text-center nowrap' colspan="3">单方成本指标(不含税)</th>
  20. <th class='text-center nowrap' colspan="3">单方成本指标(含税)</th>
  21. <th class='text-center nowrap' rowspan="2">操作</th>
  22. </tr>
  23. <tr style="border: 1px">
  24. <th class='text-left nowrap'>参考区间</th>
  25. <th class='text-left nowrap'>算数平均值</th>
  26. <th class='text-left nowrap'>有效样本量</th>
  27. <th class='text-left nowrap'>参考区间</th>
  28. <th class='text-left nowrap'>算数平均值</th>
  29. <th class='text-left nowrap'>有效样本量</th>
  30. <th class='text-left nowrap'>参考区间</th>
  31. <th class='text-left nowrap'>算数平均值</th>
  32. <th class='text-left nowrap'>有效样本量</th>
  33. <th class='text-left nowrap'>参考区间</th>
  34. <th class='text-left nowrap'>算数平均值</th>
  35. <th class='text-left nowrap'>有效样本量</th>
  36. <th class='text-left nowrap'>参考区间</th>
  37. <th class='text-left nowrap'>算数平均值</th>
  38. <th class='text-left nowrap'>有效样本量</th>
  39. </tr>
  40. </thead>
  41. {/notempty}
  42. <tbody>
  43. {foreach $list as $key=>$vo}
  44. <tr style="border: 1px">
  45. <td class='text-left nowrap'>{$vo.subjects|default=''}</td>
  46. <td class='text-left nowrap'>{$vo.costs_are_excluded_interval|default='-'}</td>
  47. <td class='text-left nowrap'>{$vo.costs_are_excluded_arithmetic_mean|default=''}</td>
  48. <td class='text-left nowrap'>{$vo.costs_are_excluded_valid_sample_size|default=''}</td>
  49. <td class='text-left nowrap'>{$vo.total_vat_interval|default=''}</td>
  50. <td class='text-left nowrap'>{$vo.total_vat_arithmetic_mean|default='-'}</td>
  51. <td class='text-left nowrap'>{$vo.total_vat_valid_sample_size|default=''}</td>
  52. <td class='text-left nowrap'>{$vo.measurement_cost_interval|default=''}</td>
  53. <td class='text-left nowrap'>{$vo.measurement_cost_arithmetic_mean|default='-'}</td>
  54. <td class='text-left nowrap'>{$vo.measurement_cost_valid_sample_size|default=''}</td>
  55. <td class='text-left nowrap'>{$vo.unilateral_cost_indicator_interval|default=''}</td>
  56. <td class='text-left nowrap'>{$vo.unilateral_cost_indicator_arithmetic_mean|default='-'}</td>
  57. <td class='text-left nowrap'>{$vo.unilateral_cost_indicator_valid_sample_size|default=''}</td>
  58. <td class='text-left nowrap'>{$vo.single_cost_indicator_interval|default=''}</td>
  59. <td class='text-left nowrap'>{$vo.single_cost_indicator_arithmetic_mean|default='-'}</td>
  60. <td class='text-left nowrap'>{$vo.single_cost_indicator_valid_sample_size|default=''}</td>
  61. <td class='text-left nowrap'>
  62. {if auth("look")}
  63. <a data-dbclick class="layui-btn layui-btn-sm layui-bg-red" data-title="查看" data-open='{:url("see")}?subjects={$vo.subjects}&ids={$ids}'>查 看</a>
  64. {/if}
  65. </td>
  66. </tr>
  67. {/foreach}
  68. </tbody>
  69. </table>
  70. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  71. </div>
  72. <script>
  73. function getIds()
  74. {
  75. var ids = $("#ids").val();
  76. window.location = '{:url("admin/main_project/download")}?ids=' +ids;
  77. }
  78. </script>
  79. {/block}