12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {extend name='admin@main'}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='integral/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>
- <th class="text-center nowrap">时间</th>
- <th class="text-center nowrap">操作</th>
- </tr>
- </thead>
- {/notempty}
- <tbody>
- {foreach $list as $key=>$vo}
- <tr>
- <td class='list-table-check-td think-checkbox'>{notempty name='vo.headimg'}<img data-tips-image style="width:20px;height:20px;vertical-align:top" src="{$vo.headimg|default=''}" class="margin-right-5">{/notempty}</td>
- <td class='text-left nowrap'>{$vo.name|default='--'}</td>
- <td class='text-left nowrap'>{$vo.phone|default='--'}</td>
- <td class='text-left nowrap'>{$vo.crystal|default='--'}</td>
- <td class='text-left nowrap'>{$int_type[$vo.type]['desc']|default='--'}</td>
- <td class='text-center nowrap'>{$vo.create_at}</td>
- <td class='text-center nowrap'>
- <span class="layui-btn layui-btn-sm layui-btn-danger" onclick="btn_confirm('删除','del','{$vo.id}');">删 除</span>
- </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/integral/"+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}
|