| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 | <article class="cl pd-20">    <div class="cl pd-5 bg-1 bk-gray">        <span class="l">            <a href="javascript:;" onclick="del_all()" class="btn btn-danger radius">                <i class="Hui-iconfont"></i> 批量删除</a>            <a class="btn btn-primary radius" href="javascript:save(0);">                <i class="Hui-iconfont"></i> 添加角色</a>        </span>        <span class="r">共有数据:<strong>{$list|count}</strong> 条</span>     </div>    <div class="mt-10">        <table class="table table-border table-bordered table-hover table-bg">            <thead>                <tr>                    <th scope="col" colspan="6">角色管理</th>                </tr>                <tr class="text-c">                    <th width="25">                        <input type="checkbox" value="" name="allcheck">                    </th>                    <th width="40px">ID</th>                    <th width="120px">角色名称</th>                    <th>权限(menu_ids)</th>                    <th width="160px">备注</th>                    <th width="80px">操作</th>                </tr>            </thead>            <tbody>                {foreach $list as $val}                <tr class="text-c">                    <td>                        <input type="checkbox" value="{$val.roleid}" name="checkbox[]">                    </td>                    <td>{$val.roleid}</td>                    <td>{$val.name}</td>                    <td>{$val.permissions}</td>                    <td>{$val.remark}</td>                    <td class="f-14">                        <a title="编辑" href="javascript:save({$val.roleid});" style="text-decoration:none">                            <i class="Hui-iconfont"></i>                        </a>                        <a title="删除" href="javascript:;" onclick="del(this,'{$val.roleid}')" class="ml-5"                            style="text-decoration:none">                            <i class="Hui-iconfont"></i>                        </a>                    </td>                </tr>                {/foreach}            </tbody>        </table>    </div></article><!--请在下方写此页面业务相关的脚本--><script type="text/javascript">    function save(id) {        var title = id==0 ? '添加角色' : '修改角色'        var url = "{:url('save')}" + "?_layer=true&id=" + id        layer_show(title, url, 800, 700);    }    // 删除条目    function del(obj, id) {        layer.confirm('确认要删除吗?', function (index) {            $.post('delete', {                'id': id            }, function (data) {                if (data.code == 1) {                    $(obj).parents("tr").remove();                    layer.msg(data.msg, {                        icon: 1,                        time: 1000                    });                } else {                    layer.msg(data.msg, {                        icon: 5,                        time: 2000                    });                    return false;                }            }, 'json');        });    }    // 批量删除    function del_all() {        var checkbox = $('.text-c input[name="checkbox[]"]');        var ids = new Array();        checkbox.each(function (x) {            if (this.checked)                ids.push(this.value);        })        console.log(ids);        layer.confirm('确认要删除吗?', function (index) {            $.post('delete', {                'id': ids            }, function (data) {                if (data.code == 1) {                    layer.msg(data.msg, {                        icon: 1,                        time: 1000                    });                    checkbox.each(function (x) {                        if (this.checked)                            $(this).parents("tr").remove();                    })                } else {                    layer.msg(data.msg, {                        icon: 5,                        time: 1000                    });                }            }, 'json')        });    }</script><!--请在上方写此页面业务相关的脚本-->
 |