details.php 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. <th class="text-center">单位</th>
  26. </tr>
  27. </thead>
  28. <tbody class="">
  29. {volist name="list" id="vo"}
  30. <tr>
  31. <!-- <td class="text-center">-->
  32. <!-- {$vo.id}-->
  33. <!-- </td>-->
  34. <td class="text-center">
  35. {$vo.title}
  36. </td>
  37. <td class="text-center">
  38. {$vo.name}
  39. </td>
  40. <td class="text-center">
  41. {$vo.specifications}
  42. </td>
  43. <td class="text-center">
  44. {$vo.number}
  45. </td>
  46. <td class="text-center">
  47. {$vo.unit_price}
  48. </td>
  49. <td class="text-center">
  50. {$vo.ot_price}
  51. </td>
  52. <td class="text-center">
  53. {$vo.weight}
  54. </td>
  55. <td class="text-center">
  56. {if condition="$vo['type'] eq 1"}
  57. 顶板
  58. {elseif condition="$vo['type'] eq 2"/}
  59. 侧板
  60. {elseif condition="$vo['type'] eq 3"/}
  61. 拉筋
  62. {elseif condition="$vo['type'] eq 4"/}
  63. 底板
  64. {elseif condition="$vo['type'] eq 5"/}
  65. 立柱
  66. {elseif condition="$vo['type'] eq 6"/}
  67. 辅拉
  68. {elseif condition="$vo['type'] eq 7"/}
  69. 保温
  70. {elseif condition="$vo['type'] eq 8"/}
  71. 槽钢
  72. {elseif condition="$vo['type'] eq 9"/}
  73. 扶梯管
  74. {else/}
  75. 错误分类
  76. {/if}
  77. </td>
  78. <td class="text-center">
  79. {$vo.company}
  80. </td>
  81. </tr>
  82. {/volist}
  83. </tbody>
  84. </table>
  85. </div>
  86. {include file="public/inner_page"}
  87. </div>
  88. </div>
  89. </div>
  90. </div>
  91. {/block}