123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- {extend name="public/container"}
- {block name="content"}
- <div class="row">
- <div class="col-sm-12">
- <div class="ibox">
- <div class="ibox-content">
- <!-- <div class="row">-->
- <!-- <div class="m-b m-l">-->
- <!-- </div>-->
- <!---->
- <!-- </div>-->
- <div class="table-responsive">
- <table class="table table-striped table-bordered">
- <thead>
- <tr>
- <!-- <th class="text-center">编号</th>-->
- <th class="text-center">名称</th>
- <th class="text-center">分类</th>
- <th class="text-center">编号</th>
- <th class="text-center">规格</th>
- <th class="text-center">数量</th>
- <th class="text-center">单价</th>
- <th class="text-center">总价</th>
- <th class="text-center">重量</th>
- <th class="text-center">分类</th>
- <th class="text-center">单位</th>
- </tr>
- </thead>
- <tbody class="">
- {volist name="list" id="vo"}
- <tr>
- <!-- <td class="text-center">-->
- <!-- {$vo.id}-->
- <!-- </td>-->
- <td class="text-center">
- {$vo.title}
- </td>
- <td class="text-center">
- {$vo.name}
- </td>
- <td class="text-center">
- {$vo.code}
- </td>
- <td class="text-center">
- {$vo.specifications}
- </td>
- <td class="text-center">
- {$vo.number}
- </td>
- <td class="text-center">
- {$vo.unit_price}
- </td>
- <td class="text-center">
- {$vo.ot_price}
- </td>
- <td class="text-center">
- {$vo.weight}
- </td>
- <td class="text-center">
- {if condition="$vo['type'] eq 1"}
- 顶板
- {elseif condition="$vo['type'] eq 2"/}
- 侧板
- {elseif condition="$vo['type'] eq 3"/}
- 拉筋
- {elseif condition="$vo['type'] eq 4"/}
- 底板
- {elseif condition="$vo['type'] eq 5"/}
- 立柱
- {elseif condition="$vo['type'] eq 6"/}
- 辅拉
- {elseif condition="$vo['type'] eq 7"/}
- 保温
- {elseif condition="$vo['type'] eq 8"/}
- 槽钢
- {elseif condition="$vo['type'] eq 9"/}
- 扶梯管
- {else/}
- 错误分类
- {/if}
- </td>
- <td class="text-center">
- {$vo.company}
- </td>
- </tr>
- {/volist}
- </tbody>
- </table>
- </div>
- {include file="public/inner_page"}
- </div>
- </div>
- </div>
- </div>
- {/block}
|