look.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {extend name='main'}
  2. {block name="button"}
  3. {if auth("add")}
  4. <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>
  5. {/if}
  6. {/block}
  7. {block name="content"}
  8. <div class="think-box-shadow">
  9. <table class="layui-table margin-top-10">
  10. {notempty name='list'}
  11. <thead>
  12. <tr>
  13. <th class='text-left nowrap'>序号</th>
  14. <th class='text-left nowrap'>成本测算科目</th>
  15. <th class='text-left nowrap'>不含增值税测算成本 (万元)</th>
  16. <th class='text-left nowrap'>增值税总额</th>
  17. <th class='text-left nowrap'>含增值税测算成本</th>
  18. <th class='text-left nowrap'>建筑面积</th>
  19. <th class='text-left nowrap'>建面单方成本指标 (不含税)</th>
  20. <th class='text-left nowrap'>建面单方成本指标 (含税)</th>
  21. <th class='text-left nowrap'>可售单方成本指标(不含税)</th>
  22. <th class='text-left nowrap'>可售单方成本指标(含税)</th>
  23. <th class='text-left nowrap'>备注</th>
  24. </tr>
  25. </thead>
  26. {/notempty}
  27. <tbody>
  28. {foreach $list as $key=>$vo}
  29. <tr>
  30. <td class='text-left nowrap' style="background-color:#f2f2f2">{$vo.number|default=''}</td>
  31. <td class='text-left nowrap'>{$vo.subjects|default='0'}</td>
  32. <td class='text-left nowrap'>{$vo.costs_are_excluded|default='0'}</td>
  33. <td class='text-left nowrap'>{$vo.total_vat|default='0'}</td>
  34. <td class='text-left nowrap'>{$vo.measurement_cost|default='0'}</td>
  35. <td class='text-left nowrap'>{$vo.area|default='0'}</td>
  36. <td class='text-left nowrap'>{$vo.unilateral_cost_indicator|default='0'}</td>
  37. <td class='text-left nowrap'>{$vo.single_cost_indicator|default='0'}</td>
  38. <td class='text-left nowrap'>{$vo.single_party_cost_tax|default='0'}</td>
  39. <td class='text-left nowrap'>{$vo.single_party_cost_no_tax|default='0'}</td>
  40. <td class='text-left nowrap'>{$vo.note|default='-'}</td>
  41. </tr>
  42. {/foreach}
  43. </tbody>
  44. </table>
  45. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  46. </div>
  47. {/block}