谷粒商城-商品系统-分类维护

139 阅读2分钟

获取三级分类

category.vue

getMenus() {
      this.$http({
        urlthis.$http.adornUrl("/product/category/list/tree"),
        method"get"
      }).then(({ data }) => {
        console.log("成功获取到菜单数据...", data.data);
        this.menus = data.data;
//将后台获取的分类赋值给elementUI封装好的三级分类menu,参考官方文档树形控件
      });
    },

CategoryController.java

@RequestMapping("product/category")

    //查出所有父类以及子分类,以树形结构组装
    @RequestMapping("/list/tree")
    public R list(@RequestParam Map<String, Object> params) {
        List<CategoryEntity> entities = categoryService.listWithTree();
        return R.ok().put("data", entities);
    }

CategoryServiceImpl.java

@Override
    public List<CategoryEntity> listWithTree() {
        //1.查出所有分类
        List<CategoryEntity> entities = baseMapper.selectList(null);
        //2.组装成父子树形结构
        List<CategoryEntity> level1Menus=entities.stream().filter(categoryEntity ->
                categoryEntity.getParentCid() ==0  //过滤:获取一级分类
        ).map(menu->{//流的操作是遍历每一项(某一个父分类)
            menu.setChildren(getChildrens(menu,entities));
        return menu;
        }).sorted((menu1,menu2)->{
            return (menu1.getSort()==null?0:menu1.getSort())-(menu2.getSort()==null?0:menu2.getSort()); //排序未理解
        }).collect(Collectors.toList());
        return level1Menus;
    }
  //递归查找所有菜单子菜单(root为当前父级分类,all为所有分类)
    private List<CategoryEntity> getChildrens(CategoryEntity root,List<CategoryEntity> all){
                                
        List<CategoryEntity> children = all.stream().filter(categoryEntity -> {
            return categoryEntity.getParentCid() == root.getCatId(); //获取当前分类的子分类(过滤条件也是递归结束条件)
        }).map(categoryEntity -> {
            //1.找到子菜单(子分类可能也存在子子分类)
            categoryEntity.setChildren(getChildrens(categoryEntity, all));
            return categoryEntity;
        }).sorted((menu1, menu2) -> {
            //2.菜单排序
            return (menu1.getSort() == null ? 0 : menu1.getSort()) - (menu2.getSort() == null ? 0 : menu2.getSort());
        }).collect(Collectors.toList());
        return children;
    }

删除分类

category.vue

remove(node, data) {
      var ids = [data.catId];
      this.$confirm(`是否删除【${data.name}】菜单?`"提示", {
        confirmButtonText"确定",
        cancelButtonText"取消",
        type"warning"
      })
        .then(() => {
          this.$http({
            urlthis.$http.adornUrl("/product/category/delete"),
            method"post",
            datathis.$http.adornData(ids, false)
          }).then(({ data }) => {
            this.$message({
              message"菜单删除成功",
              type"success"
            });
            //刷新出新的菜单
            this.getMenus();
            //设置需要默认展开的菜单
            this.expandedKey = [node.parent.data.catId];
          });
        })
        .catch(() => {});
      console.log("remove", node, data);
    }

CategoryController.java

    @RequestMapping("/delete")
    public R delete(@RequestBody Long[] catIds) {
        //1、检查当前删除的菜单是否被其他地方引用
        categoryService.removeMenuByIds(Arrays.asList(catIds));
        return R.ok();
    }

CategoryServiceImpl.java

    @Override
    public void removeMenuByIds(List<Long> asList) {
//TODO 1.检查当前删除的菜单是否被其他地方引用
//此处使用mybatis plus逻辑删除
        baseMapper.deleteBatchIds(asList);
    }

新增分类

category.vue

//对话框表单数据(需要传给后台的)
data(){
    return {
        category: {  //表单数据对象
                name"",  //分类名
                parentCid0,  //父分类,默认为0
                catLevel0, //层级
                showStatus1, //逻辑删除状态
                sort0,  
                productUnit"", //计量单位
                icon"",  //图标
                catIdnull  //分类id
              }
   }
}

//点击添加分类触发的操作
    append(data) {
      console.log("append", data);
      this.dialogType = "add";
      this.title = "添加分类";
      this.dialogVisible = true;  //点击append对话框开启
      this.category.parentCid = data.catId;
      this.category.catLevel = data.catLevel * 1 + 1;
      this.category.catId = null;//后台自增
      this.category.name = ""; //分类名,待填写
      this.category.icon = "";
      this.category.productUnit = "";
      this.category.sort = 0;
      this.category.showStatus = 1;
    },
    
 //点击确认添加提交到后台
    addCategory() {
      console.log("提交的三级分类数据"this.category);
      this.$http({
        urlthis.$http.adornUrl("/product/category/save"),
        method"post",
        datathis.$http.adornData(this.categoryfalse),
      }).then(({ data }) => {
        this.$message({
          message"菜单保存成功",
          type"success",
        });
        //关闭对话框
        this.dialogVisible = false;
        //刷新出新的菜单
        this.getMenus();
        //设置需要默认展开的菜单
        this.expandedKey = [this.category.parentCid];
      });
    },

CategoryController.java

    @RequestMapping("/save")
    public R save(@RequestBody CategoryEntity category) {
        categoryService.save(category); //逆向生成的保存方法
        return R.ok();
    }

修改分类

category.vue

   edit(data) {
      this.dialogType = "edit";
      this.title = "修改分类";
      this.dialogVisible = true;
      //发送请求获取当前节点最新的数据
      this.$http({
        urlthis.$http.adornUrl(`/product/category/info/${data.catId}`),
        method"get",
      }).then(({ data }) => {
        //请求成功
        console.log("要回显的数据", data);
        this.category.name = data.data.name;
        this.category.catId = data.data.catId;
        this.category.icon = data.data.icon;
        this.category.productUnit = data.data.productUnit;
        this.category.parentCid = data.data.parentCid;
        this.category.catLevel = data.data.catLevel;
        this.category.sort = data.data.sort;
        this.category.showStatus = data.data.showStatus;
      });
    },


//确认修改分类数据提交后台
   editCategory() {
      var { catId, name, icon, productUnit } = this.category;
      this.$http({
        urlthis.$http.adornUrl("/product/category/update"),
        method"post",
        datathis.$http.adornData({ catId, name, icon, productUnit }, false),
      }).then(({ data }) => {
        this.$message({
          message"菜单修改成功",
          type"success",
        });
        //关闭对话框
        this.dialogVisible = false;
        //刷新出新的菜单
        this.getMenus();
        //设置需要默认展开的菜单
        this.expandedKey = [this.category.parentCid];
      });
    },

CategoryController.java

    /**
     * 通过id获取分类信息回显
     */
    @RequestMapping("/info/{catId}")
    public R info(@PathVariable("catId") Long catId) {
        CategoryEntity category = categoryService.getById(catId);
        return R.ok().put("data", category);
    }
    
      /**
     * 修改
     */
    @RequestMapping("/update")
    public R update(@RequestBody CategoryEntity category) {
        categoryService.updateCascade(category);
        return R.ok();
    }

CategoryServiceImpl.java

    @Transactional
    @Override
    public void updateCascade(CategoryEntity category) {
        this.updateById(category);
      categoryBrandRelationService.updateCategory(category.getCatId(),category.getName());
    }

CategoryBrandRelationServiceImpl.java

    @Override
    public void updateCategory(Long catId, String name) {
        this.baseMapper.updateCategory(catId,name);
    }

拖拽

category.vue

是否允许拖拽

allowDrop(draggingNode, dropNode, type) {
//参数:1.被拖动的节点  2.接收他的父节点  3.放置位置
      //1、被拖动的当前节点以及所在的父节点总层数不能大于3
      //1)、被拖动的当前节点总层数
      console.log("allowDrop:", draggingNode, dropNode, type);
      this.countNodeLevel(draggingNode);
      //当前正在拖动的节点+父节点所在的深度不大于3即可
      let deep = Math.abs(this.maxLevel - draggingNode.level) + 1;
      console.log("深度:", deep);
      //   this.maxLevel
      if (type == "inner") {
        return deep + dropNode.level <= 3;
      } else {
        return deep + dropNode.parent.level <= 3;
      }
    },
   
countNodeLevel(node) {
      //找到所有子节点,求出最大深度
      if (node.childNodes != null && node.childNodes.length > 0) {
        for (let i = 0; i < node.childNodes.length; i++) {
          if (node.childNodes[i].level > this.maxLevel) {
            this.maxLevel = node.childNodes[i].level;
          }
          this.countNodeLevel(node.childNodes[i]);
        }
      }
    }  

拖拽后的数据更新

//拖拽后触发此函数
    handleDrop(draggingNode, dropNode, dropType, ev) {
      console.log("handleDrop: ", draggingNode, dropNode, dropType);
      //1、当前节点最新的父节点id
      let pCid = 0;
      let siblings = null;
      if (dropType == "before" || dropType == "after") {
        pCid =
          dropNode.parent.data.catId == undefined
            ? 0
            : dropNode.parent.data.catId;
        siblings = dropNode.parent.childNodes;
      } else {
        pCid = dropNode.data.catId;
        siblings = dropNode.childNodes;
      }
      this.pCid.push(pCid);
      //2、当前拖拽节点的最新顺序,
      for (let i = 0; i < siblings.length; i++) {
        if (siblings[i].data.catId == draggingNode.data.catId) {
          //如果遍历的是当前正在拖拽的节点
          let catLevel = draggingNode.level;
          if (siblings[i].level != draggingNode.level) {
            //当前节点的层级发生变化
            catLevel = siblings[i].level;
            //修改他子节点的层级
            this.updateChildNodeLevel(siblings[i]);
          }
          this.updateNodes.push({
            catId: siblings[i].data.catId,
            sort: i,
            parentCid: pCid,
            catLevel: catLevel,
          });
        } else {
          this.updateNodes.push({ catId: siblings[i].data.catIdsort: i });
        }
      }
      //3、当前拖拽节点的最新层级
      console.log("updateNodes"this.updateNodes);
    },
    
    //更新各节点顺序
updateChildNodeLevel(node) {
      if (node.childNodes.length > 0) {
        for (let i = 0; i < node.childNodes.length; i++) {
          var cNode = node.childNodes[i].data;
          this.updateNodes.push({
            catId: cNode.catId,
            catLevel: node.childNodes[i].level,
          });
          this.updateChildNodeLevel(node.childNodes[i]);
        }
      }
    }
    
    
//保存后才将拖拽结果数据提交到后台
    batchSave() {
      this.$http({
        urlthis.$http.adornUrl("/product/category/update/sort"),
        method"post",
        datathis.$http.adornData(this.updateNodesfalse),
      }).then(({ data }) => {
        this.$message({
          message"菜单顺序等修改成功",
          type"success",
        });
        //刷新出新的菜单
        this.getMenus();
        //设置需要默认展开的菜单
        this.expandedKey = this.pCid;
        this.updateNodes = [];
        this.maxLevel = 0;
        // this.pCid = 0;
      });
    }

CategoryController.java

@RequestMapping("/update/sort")
    public R updateSort(@RequestBody CategoryEntity[] category) {
        categoryService.updateBatchById(Arrays.asList(category));//数组转集合

        return R.ok();
    }

批量删除

category.vue

//批量删除
    batchDelete() {
      let catIds = [];
      let checkedNodes = this.$refs.menuTree.getCheckedNodes();
      console.log("被选中的元素", checkedNodes);
      for (let i = 0; i < checkedNodes.length; i++) {
        catIds.push(checkedNodes[i].catId);
      }
      this.$confirm(`是否批量删除【${catIds}】菜单?`"提示", {
        confirmButtonText"确定",
        cancelButtonText"取消",
        type"warning",
      })
        .then(() => {
          this.$http({
            urlthis.$http.adornUrl("/product/category/delete"),//与普通删除一样的请求路径
            method"post",
            datathis.$http.adornData(catIds, false),
          }).then(({ data }) => {
            this.$message({
              message"菜单批量删除成功",
              type"success",
            });
            this.getMenus();
          });
        })
        .catch(() => {});
    }