1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {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>
- </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.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}
|