mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-09 16:05:33 +08:00
25 lines
607 B
HTML
25 lines
607 B
HTML
<!--
|
||
Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
See LICENSE file for license details.
|
||
-->
|
||
|
||
<div class="division">
|
||
<h4>产品线店铺</h4>
|
||
<table cellspacing="0" class="gridlist" cellpadding="0" border="0" width="100%">
|
||
<thead>
|
||
<tr>
|
||
<th>店铺编码</th>
|
||
<th>店铺名称</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<{foreach from=$shopList item=shop}>
|
||
<tr>
|
||
<td><{$shop.shop_bn}></td>
|
||
<td><{$shop.name}></td>
|
||
</tr>
|
||
<{/foreach}>
|
||
</tbody>
|
||
</table>
|
||
</div>
|