|
@@ -0,0 +1,52 @@
|
|
|
+
|
|
|
+{block name="content"}
|
|
|
+<div class="think-box-shadow">
|
|
|
+ <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>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ {/notempty}
|
|
|
+ <tbody>
|
|
|
+ {foreach $list as $key=>$vo}
|
|
|
+ <tr>
|
|
|
+ <td class='text-left nowrap'>{$vo.name|default=''}</td>
|
|
|
+ <td class='text-left nowrap'>{$vo.phone|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>
|
|
|
+<script>
|
|
|
+
|
|
|
+
|
|
|
+ function btn_confirm(msg,fun,id) {
|
|
|
+ layer.confirm('请确定是否'+msg, {btn: ['确定', '取消'], title: "提示"}, function () {
|
|
|
+ var url = "/store/goods/"+fun;
|
|
|
+ layer.closeAll();
|
|
|
+ $.ajax({
|
|
|
+ type: "post",
|
|
|
+ url: url,
|
|
|
+ data: {id:id},
|
|
|
+ dataType: "json",
|
|
|
+ async: false,
|
|
|
+ success: function (data) {
|
|
|
+ layer.msg(data.info);
|
|
|
+ setTimeout(function () {
|
|
|
+ window.location.reload();
|
|
|
+ },1000)
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ }
|
|
|
+</script>
|
|
|
+{/block}
|
|
|
+
|
|
|
+
|
|
|
+
|