mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-04 14:36:50 +08:00
33 lines
1.2 KiB
HTML
33 lines
1.2 KiB
HTML
<!--
|
|
Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<h3>请先选择店铺</h3>
|
|
<div class="division">
|
|
<form method='post' action='index.php?app=inventorydepth&ctl=shop_items&act=index'>
|
|
<div class="tableform">
|
|
<ul>
|
|
<{foreach from=$shops item=item }>
|
|
<li style='float:left;padding:10px;'>
|
|
<input type='radio' name='shop_id' value='<{$item.shop_id}>'><{$item.name}>
|
|
</li>
|
|
<{/foreach}>
|
|
</ul>
|
|
</div>
|
|
<div class="table-action">
|
|
<{button label="确定" type="submit" }>
|
|
</div>
|
|
</form>
|
|
</div> |