getClassifyTree.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // 获取分类名称 例: 一级分类|二级分类|三级分类
  2. export function getCategory(data) {
  3. const result = []
  4. const _getParentCategoryName = (info) => {
  5. result.push(info.name)
  6. if(info.parents) {
  7. _getParentCategoryName(info.parents)
  8. }
  9. }
  10. _getParentCategoryName(data)
  11. return result.reverse().join('|')
  12. }
  13. // 获取分类id 例: ['30', '300', '3000']
  14. export function getCategoryId(data) {
  15. const result = []
  16. const _getParentCategoryName = (info) => {
  17. if(info!=null){
  18. result.push(info.pkId)
  19. if(info.parents) {
  20. _getParentCategoryName(info.parents)
  21. }
  22. }
  23. }
  24. _getParentCategoryName(data)
  25. return result.reverse()
  26. }
  27. // 通过分类id [1,2] 获取分类名 ['分类1', '分类2']
  28. export function getCategoryName(data,ids) {
  29. const result = []
  30. let num = 0
  31. const _getParentCategoryName = (info) => {
  32. for(let i of info) {
  33. if(i.pkId == ids[num]) {
  34. result.push(i.name)
  35. num+=1
  36. if(i.children && i.children.length) {
  37. _getParentCategoryName(i.children)
  38. }
  39. }
  40. }
  41. }
  42. _getParentCategoryName(data)
  43. return result.join('|')
  44. }