look.html 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {extend name='main'}
  2. {block name="button"}
  3. <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>
  4. {/block}
  5. {block name="content"}
  6. <div class="think-box-shadow">
  7. <table class="layui-table margin-top-10">
  8. {notempty name='list'}
  9. <thead>
  10. <tr>
  11. <th class='text-left nowrap'>序号</th>
  12. <th class='text-left nowrap'>成本项目</th>
  13. <th class='text-left nowrap'>面积计算口径</th>
  14. <th class='text-left nowrap'>建面单方成本(元/m2)(含税)</th>
  15. <th class='text-left nowrap'>总价(万元)(含税)</th>
  16. <th class='text-left nowrap'>建面单方成本(元/m2)(不含税)</th>
  17. <th class='text-left nowrap'>总价(万元)(不含税)</th>
  18. <th class='text-left nowrap'>可售单方成本(元/m2)(含税)</th>
  19. <th class='text-left nowrap'>可售单方成本(元/m2)(不含税)</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. <th class='text-left nowrap'>预留指标1</th>
  25. <th class='text-left nowrap'>预留指标2</th>
  26. <th class='text-left nowrap'>备注</th>
  27. </tr>
  28. </thead>
  29. {/notempty}
  30. <tbody>
  31. {foreach $list as $key=>$vo}
  32. <tr data-dbclick>
  33. <td class='text-left nowrap'>{$vo.number|default=''}</td>
  34. <td class='text-left nowrap'>{$vo.cost_project|default='-'}</td>
  35. <td class='text-left nowrap'>{$vo.area_calculating_aperture|default='-'}</td>
  36. <td class='text-left nowrap'>{$vo.single_party_cost|default='0'}</td>
  37. <td class='text-left nowrap'>{$vo.total_price_included|default='0'}</td>
  38. <td class='text-left nowrap'>{$vo.single_party_cost_excluding|default='0'}</td>
  39. <td class='text-left nowrap'>{$vo.total_price_included_excluding|default='0'}</td>
  40. <td class='text-left nowrap'>{$vo.single_party_cost_tax|default='0'}</td>
  41. <td class='text-left nowrap'>{$vo.single_party_cost_no_tax|default='0'}</td>
  42. <td class='text-left nowrap'>{$vo.quantities|default='0'}</td>
  43. <td class='text-left nowrap'>{$vo.calculating_unit|default='0'}</td>
  44. <td class='text-left nowrap'>{$vo.unilateral_content|default='0'}</td>
  45. <td class='text-left nowrap'>{$vo.unilateral_content_excluding|default='0'}</td>
  46. <td class='text-left nowrap'>{$vo.saleable_single_party_tax|default='0'}</td>
  47. <td class='text-left nowrap'>{$vo.saleable_single_party_no_tax|default='0'}</td>
  48. <td class='text-left nowrap'>{$vo.note|default='-'}</td>
  49. </tr>
  50. {/foreach}
  51. </tbody>
  52. </table>
  53. {empty name='list'}<span class="notdata">没有记录哦</span>{else}{$pagehtml|raw|default=''}{/empty}
  54. </div>
  55. {/block}