123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {extend name='admin@main'}
- {block name="button"}
- <a href="javascript:history.go(-1);" data-title="返 回" class='layui-btn layui-btn-sm layui-btn-primary'>返 回</a>
- {/block}
- {block name="content"}
- <div class="think-box-shadow">
- {include file='wallet_info/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-left 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.pm == 1 ? '': '-'}{$vo.change|default='--'}</td>
- <td class='text-left nowrap'>{$vo.title}</td>
- <td class='text-left nowrap'>{$vo.create_at}</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 = "/user/crystal/"+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}
|