• Fastadmin 子级菜单展开合并,分类父级归纳


    这里踩过一个坑,fastadmin默认的展开合并预定义处理的变量是pid。

    所以建表时父级id需要是pid;

    当然不是pid也没关系,这里以cat_id为例,多加一步处理一样能实现。

    废话少说上代码:

    首先在控制器

    引用:use fast\Tree;

    自动调取函数 _initialize 内添加以下代码:

    cat_id 我重命名成pid了。本身是pid的忽略不计。

    1. public function _initialize()
    2. {
    3. parent::_initialize();
    4. $this->model = new \app\admin\model\classification\Classification;
    5. $tree = Tree::instance();
    6. $tree->init(collection($this->model->field('*,cat_id as pid')->order('id desc')->select())->toArray(), 'pid');
    7. $this->categorylist = $tree->getTreeList($tree->getTreeArray(0), 'name');
    8. $categorydata = [0 => ['name' => __('None')]];
    9. foreach ($this->categorylist as $k => &$v) {
    10. $categorydata[$v['id']] = $v;
    11. }
    12. $this->view->assign("parentList", $categorydata);
    13. }

    复制控制器index方法:

    1. public function index()
    2. {
    3. if ($this->request->isAjax()) {
    4. $list = $this->categorylist;
    5. $total = count($this->categorylist);
    6. $result = array("total" => $total, "rows" => $list);
    7. return json($result);
    8. }
    9. return $this->view->fetch();
    10. }

    接下来找到 js 文件:

    目录:public\assets\js\backend\classify.js

    注意:

    原name:{field: 'name', title: __('Name')},

    替换为:

    {field: 'name', title: __('Name'), align: 'left', formatter:function (value, row, index) { return value.toString().replace(/(&|&)nbsp;/g, ' '); } },

    添加一列展开合并的按钮

    1. {
    2. field: 'id',
    3. title: '',
    4. operate: false,
    5. formatter: Controller.api.formatter.subnode
    6. },

    整段js示例:

    1. // 初始化表格
    2. table.bootstrapTable({
    3. url: $.fn.bootstrapTable.defaults.extend.index_url,
    4. pk: 'id',
    5. sortName: 'id',
    6. escape: false,
    7. columns: [
    8. [
    9. {checkbox: true},
    10. {field: 'id', title: __('Id')},
    11. {field: 'pid', title: __('Pid')},
    12. {
    13. field: 'name', title: __('Name'), align: 'left', formatter: function (value, row, index) {
    14. return value.toString().replace(/(&|&)nbsp;/g, ' ');
    15. }
    16. },
    17. {
    18. field: 'id',
    19. title: '',
    20. operate: false,
    21. formatter: Controller.api.formatter.subnode
    22. },
    23. {field: 'createtime', title: __('Createtime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
    24. {field: 'updatetime', title: __('Updatetime'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
    25. {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}
    26. ]
    27. ],
    28. pagination: false, // 隐藏分页
    29. search: false, // 隐藏搜索框
    30. commonSearch: false, // 隐藏搜索按钮
    31. showToggle: false, // 表格视图两种模式
    32. showColumns: false, // 隐藏列
    33. showExport: false, // 隐藏导出
    34. rowAttributes: function (row, index) {
    35. if (this.totalRows > 500) {
    36. return row.pid == 0 ? {} : {style: "display:none"};
    37. }
    38. return row.haschild == 1 || row.pid ? {} : {style: "display:none"};
    39. }
    40. });

    注意 escape: false, 属性

    还是在js文件, table.bootstrapTable下追加以下代码:

    1. // 为表格绑定事件
    2. Table.api.bindevent(table);
    3. //表格内容渲染前
    4. table.on('pre-body.bs.table', function (e, data) {
    5. var options = table.bootstrapTable("getOptions");
    6. options.escape = true;
    7. });
    8. // 当内容渲染完成后
    9. table.on('post-body.bs.table', function (e, settings, json, xhr) {
    10. // 默认隐藏所有子节点
    11. $("a.btn[data-id][data-pid][data-pid!=0]").closest("tr").hide();
    12. $(".btn-node-sub.disabled").closest("tr").hide();
    13. // 显示隐藏子节点
    14. $(".btn-node-sub").off("click").on("click", function (e) {
    15. var status = $(this).data("shown") ? true : false;
    16. $("a.btn[data-pid='" + $(this).data("id") + "']").each(function () {
    17. $(this).closest("tr").toggle(!status);
    18. });
    19. $(this).data("shown", !status);
    20. return false;
    21. });
    22. // 点击切换/排序/删除操作后刷新左侧菜单
    23. $(".btn-change[data-id],.btn-delone,.btn-dragsort").data("success", function (data, ret) {
    24. Fast.api.refreshmenu();
    25. return false;
    26. });
    27. });
    28. // 批量删除后的回调
    29. $(".toolbar > .btn-del,.toolbar .btn-more~ul>li>a").data("success", function (e) {
    30. Fast.api.refreshmenu();
    31. });
    32. // 展开隐藏一级
    33. $(document.body).on("click", ".btn-toggle", function (e) {
    34. $("a.btn[data-id][data-pid][data-pid!=0].disabled").closest("tr").hide();
    35. var that = this;
    36. var show = $("i", that).hasClass("fa-chevron-down");
    37. $("i", that).toggleClass("fa-chevron-down", !show);
    38. $("i", that).toggleClass("fa-chevron-up", show);
    39. $("a.btn[data-id][data-pid][data-pid!=0]").not('.disabled').closest("tr").toggle(show);
    40. $(".btn-node-sub[data-pid=0]").data("shown", show);
    41. });
    42. // 展开隐藏全部
    43. $(document.body).on("click", ".btn-toggle-all", function (e) {
    44. var that = this;
    45. var show = $("i", that).hasClass("fa-plus");
    46. $("i", that).toggleClass("fa-plus", !show);
    47. $("i", that).toggleClass("fa-minus", show);
    48. $(".btn-node-sub.disabled").closest("tr").toggle(show);
    49. $(".btn-node-sub").data("shown", show);
    50. });

    还是js文件,下面api 替换为:

    1. api: {
    2. formatter: {
    3. subnode: function (value, row, index) {
    4. }
    5. },
    6. bindevent: function () {
    7. $(document).on('click', "input[name='row[pid]']", function () {
    8. var name = $("input[name='row[name]']");
    9. var ismenu = $(this).val() == 1;
    10. name.prop("placeholder", ismenu ? name.data("placeholder-menu") : name.data("placeholder-node"));
    11. $('div[data-type="menu"]').toggleClass("hidden", !ismenu);
    12. });
    13. $("input[name='row[ismenu]']:checked").trigger("click");
    14. var iconlist = [];
    15. var iconfunc = function () {
    16. Layer.open({
    17. type: 1,
    18. area: ['99%', '98%'], //宽高
    19. content: Template('chooseicontpl', {iconlist: iconlist})
    20. });
    21. };
    22. Form.api.bindevent($("form[role=form]"), function (data) {
    23. Fast.api.refreshmenu();
    24. });
    25. $(document).on('change keyup', "#icon", function () {
    26. $(this).prev().find("i").prop("class", $(this).val());
    27. });
    28. $(document).on('click', ".btn-search-icon", function () {
    29. if (iconlist.length == 0) {
    30. $.get(Config.site.cdnurl + "/assets/libs/font-awesome/less/variables.less", function (ret) {
    31. var exp = /fa-var-(.*):/ig;
    32. var result;
    33. while ((result = exp.exec(ret)) != null) {
    34. iconlist.push(result[1]);
    35. }
    36. iconfunc();
    37. });
    38. } else {
    39. iconfunc();
    40. }
    41. });
    42. $(document).on('click', '#chooseicon ul li', function () {
    43. $("input[name='row[icon]']").val('fa fa-' + $(this).data("font")).trigger("change");
    44. Layer.closeAll();
    45. });
    46. $(document).on('keyup', 'input.js-icon-search', function () {
    47. $("#chooseicon ul li").show();
    48. if ($(this).val() != '') {
    49. $("#chooseicon ul li:not([data-font*='" + $(this).val() + "'])").hide();
    50. }
    51. });
    52. }
    53. }

  • 相关阅读:
    23111710[含文档+PPT+源码等]计算机毕业设计基于SpringBoot的体育馆场地预约赛事管理系统的设计
    OpenCV(opencv_apps)在ROS中的视频图像的应用(重点讲解哈里斯角点的检测)
    百度语音识别api使用(Java版本)
    SpringBoot 28 服务注册实战
    生产经验篇(1)——删库,怎么修复?
    《Java并发编程的艺术》——锁(笔记)
    UE4贴图自适应屏幕大小
    8086汇编中mov,add,sub语法
    基本的SELECT语句——“MySQL数据库”
    Scanner、Random、stirng
  • 原文地址:https://blog.csdn.net/withoutfear/article/details/133693781