123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <!DOCTYPE html>
- <html class="x-admin-sm">
-
- <head>
- <meta charset="UTF-8">
- <meta name="renderer" content="webkit">
- <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
- <meta name="viewport" content="width=device-width,user-scalable=yes, minimum-scale=0.4, initial-scale=0.8,target-densitydpi=low-dpi" />
- <link rel="stylesheet" href="https://osscold.baozhida.cn/css/font.css">
- <link rel="stylesheet" href="https://osscold.baozhida.cn/css/xadmin.css">
- <script type="text/javascript" src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
- <script src="https://osscold.baozhida.cn/lib/layui/layui.js" charset="utf-8"></script>
- <script type="text/javascript" src="https://osscold.baozhida.cn/js/xadmin.js"></script>
- <!-- 让IE8/9支持媒体查询,从而兼容栅格 -->
- <!--[if lt IE 9]>
- <script src="https://cdn.staticfile.org/html5shiv/r29/html5.min.js"></script>
- <script src="https://cdn.staticfile.org/respond.js/1.4.2/respond.min.js"></script>
- <![endif]-->
- </head>
- <body>
- <div class="x-nav">
- <span class="layui-breadcrumb">
- <a href="">首页</a>
- <a><cite>宝智达</cite></a>
- </span>
- <a class="layui-btn layui-btn-normal " style="line-height:1.6em;margin-top:3px;float:right" onclick="location.reload()" title="刷新">
- <i class="layui-icon layui-icon-normal" style="line-height:30px"></i>
- </a>
- </div>
- <div class="layui-fluid">
- <div class="layui-row layui-col-space15">
- <div class="layui-col-md12">
- <div class="layui-card">
- <!-- <div class="layui-card-body ">-->
- <!-- <hr>-->
- <!--<!– <blockquote class="layui-elem-quote">每个tr 上有两个属性 cate-id='1' 当前分类id fid='0' 父级id ,顶级分类为 0,有子分类的前面加收缩图标<i class="layui-icon x-show" status='true'></i></blockquote>–>-->
- <!-- </div>-->
- <div class="layui-card-header">
- <button class="layui-btn layui-btn-normal layui-btn-xs" onclick="xadmin.open('添加','Class_?id=0',400,400)" ><i class="layui-icon"></i>添加分类</button>
- </div>
- <div class="layui-card-body ">
- <table class="layui-table layui-form" >
- <thead>
- <tr>
- <!-- <th width="20">-->
- <!-- <input type="checkbox" name="" lay-skin="primary">-->
- <!-- </th>-->
- <!-- <th width="70">ID</th>-->
- <th width="250">栏目名</th>
- <!-- <th width="50">排序</th>-->
- <!-- <th width="80">状态</th>-->
- <th >操作</th>
- </thead>
- <tbody class="x-cate">
- {{range $index, $elem := .List}}
- <tr cate-id='{{$elem.Id}}' fid='0' >
- <td>
- <i class="layui-icon "></i>
- {{$elem.T_name}}
-
- </td>
- <td class="td-manage">
- <button class="layui-btn layui-btn layui-btn-xs" onclick="xadmin.open('编辑','Class_?id={{$elem.Id}}',400,400)" ><i class="layui-icon"></i>编辑</button>
- <button class="layui-btn-danger layui-btn layui-btn-xs" onclick="member_del(this,'{{$elem.Id}}')" href="javascript:;" ><i class="layui-icon"></i>删除</button>
- </td>
- </tr>
- {{end}}
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- <script>
- layui.use(['form'], function(){
- form = layui.form;
-
- });
- /*用户-删除*/
- function member_del(obj,id){
- layer.confirm('确认要删除吗?',function(index){
- //发异步删除数据
- $(obj).parents("tr").remove();
- $.ajax({
- type: 'POST',
- url: 'Class_Del',//发送请求
- data: {Id:id},
- success: function(result) {
- console.log(result)
- if (result.Code == 200 ){
- layer.msg('已删除!', {
- icon: 1,
- time: 2000
- });
- window.location.reload();
- }else {
- layer.msg('删除失败!', {
- time: 2000
- });
- }
- }
- });
- });
- }
- // 分类展开收起的分类的逻辑
- //
- $(function(){
- $("tbody.x-cate tr[fid!='0']").hide();
- // 栏目多级显示效果
- $('.x-show').click(function () {
- if($(this).attr('status')=='true'){
- $(this).html('');
- $(this).attr('status','false');
- cateId = $(this).parents('tr').attr('cate-id');
- $("tbody tr[fid="+cateId+"]").show();
- }else{
- cateIds = [];
- $(this).html('');
- $(this).attr('status','true');
- cateId = $(this).parents('tr').attr('cate-id');
- getCateId(cateId);
- for (var i in cateIds) {
- $("tbody tr[cate-id="+cateIds[i]+"]").hide().find('.x-show').html('').attr('status','true');
- }
- }
- })
- })
- var cateIds = [];
- function getCateId(cateId) {
- $("tbody tr[fid="+cateId+"]").each(function(index, el) {
- id = $(el).attr('cate-id');
- cateIds.push(id);
- getCateId(id);
- });
- }
-
- </script>
- </body>
- </html>
|