details.php 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {extend name="public/container"}
  2. {block name="content"}
  3. <div class="row">
  4. <div class="col-sm-12">
  5. <div class="ibox">
  6. <div class="ibox-content">
  7. <!-- <div class="row">-->
  8. <!-- <div class="m-b m-l">-->
  9. <!-- </div>-->
  10. <!---->
  11. <!-- </div>-->
  12. <div class="table-responsive">
  13. <table class="table table-striped table-bordered">
  14. <thead>
  15. <tr>
  16. <!-- <th class="text-center">编号</th>-->
  17. <th class="text-center">名称</th>
  18. <th class="text-center">分类</th>
  19. <th class="text-center">规格</th>
  20. <th class="text-center">数量</th>
  21. <th class="text-center">单价</th>
  22. <th class="text-center">总价</th>
  23. <th class="text-center">分类</th>
  24. <th class="text-center">单位</th>
  25. </tr>
  26. </thead>
  27. <tbody class="">
  28. {volist name="list" id="vo"}
  29. <tr>
  30. <!-- <td class="text-center">-->
  31. <!-- {$vo.id}-->
  32. <!-- </td>-->
  33. <td class="text-center">
  34. {$vo.title}
  35. </td>
  36. <td class="text-center">
  37. {$vo.name}
  38. </td>
  39. <td class="text-center">
  40. {$vo.specifications}
  41. </td>
  42. <td class="text-center">
  43. {$vo.number}
  44. </td>
  45. <td class="text-center">
  46. {$vo.unit_price}
  47. </td>
  48. <td class="text-center">
  49. {$vo.ot_price}
  50. </td>
  51. <td class="text-center">
  52. {if condition="$vo['type'] eq 1"}
  53. 顶板
  54. {elseif condition="$vo['type'] eq 2"/}
  55. 侧板
  56. {elseif condition="$vo['type'] eq 3"/}
  57. 拉筋
  58. {elseif condition="$vo['type'] eq 4"/}
  59. 底板
  60. {elseif condition="$vo['type'] eq 5"/}
  61. 立柱
  62. {elseif condition="$vo['type'] eq 6"/}
  63. 辅拉
  64. {elseif condition="$vo['type'] eq 7"/}
  65. 保温
  66. {elseif condition="$vo['type'] eq 8"/}
  67. 槽钢
  68. {elseif condition="$vo['type'] eq 9"/}
  69. 扶梯管
  70. {else/}
  71. 错误分类
  72. {/if}
  73. </td>
  74. <td class="text-center">
  75. {$vo.company}
  76. </td>
  77. </tr>
  78. {/volist}
  79. </tbody>
  80. </table>
  81. </div>
  82. {include file="public/inner_page"}
  83. </div>
  84. </div>
  85. </div>
  86. </div>
  87. {/block}