12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {extend name='admin@main'}
- {block name="button"}
- <button class="layui-btn layui-btn-sm layui-btn-primary" type='button' data-open="{:url('goods/index')}">返回</button>
- {/block}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='goods_stock_log/index_search'}
- <table class="layui-table margin-top-10" lay-skin="line">
- {notempty name='list'}
- <thead>
- <tr>
- <th class='text-left nowrap'>类型</th>
- <th class='text-left nowrap'>商品规格</th>
- <th class='text-left nowrap'>单价</th>
- <th class='text-left nowrap'>数量</th>
- <th class='text-left nowrap'>创建时间</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='text-left nowrap'>
- {$get_goods_stock_log_list[$vo.type]|default='--'}
- </td>
- <td class='text-left nowrap'>
- <p>规格ID:{$vo.stock_id|default='--'}</p>
- <p class="color-desc">规格名称:{$vo.name|default='--'}</p>
- </td>
- <td class='text-left nowrap'>
- {$vo.price|default='--'}
- </td>
- <td class='text-left nowrap'>
- {$vo.stock|default='--'}
- </td>
- <td class='text-left nowrap'>
- {$vo.create_at|default='--'}
- </td>
- </tr>
- {/foreach}
- </tbody>
- </table>
- {empty name='list'}<span class="notdata">没 有 记 录 哦!</span>{else}{$pagehtml|raw|default=''}{/empty}
- </div>
- {/block}
|