multilevelClass.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. Component({
  2. properties: {
  3. item: {
  4. type: Object
  5. }
  6. },
  7. data: {
  8. active: {}
  9. },
  10. lifetimes: {
  11. attached: function () {
  12. getApp().globalData.Language.getLanguagePackage(this)
  13. }
  14. },
  15. methods: {
  16. clearChild() {
  17. this.setData({
  18. "item.index": null,
  19. childClass: null
  20. });
  21. let MultilevelClass = this.selectComponent("#MultilevelClass");
  22. if (MultilevelClass) MultilevelClass.clearChild()
  23. getApp().globalData.temporaryId = null;
  24. },
  25. onSelect(e) {
  26. const {
  27. i,
  28. item
  29. } = e.currentTarget.dataset;
  30. if (this.data.item.index == i) {
  31. getApp().globalData.temporaryId = this.data.item.id || "";
  32. this.setData({
  33. "item.index": null,
  34. childClass: null
  35. });
  36. } else {
  37. getApp().globalData.temporaryId = this.data.item.selectKey ? item[this.data.item.selectKey] : JSON.parse(JSON.stringify(item));
  38. this.setData({
  39. "item.index": i,
  40. childClass: item.subdep.length ? {
  41. index: null,
  42. label: item.itemclassname + getApp().globalData.Language.getMapText('的下级分类'),
  43. list: item.subdep,
  44. selectKey: this.data.item.selectKey,
  45. showName: this.data.item.showName,
  46. type: this.data.item.type,
  47. value: "",
  48. valueKey: this.data.item.valueKey,
  49. id: getApp().globalData.temporaryId
  50. } : null
  51. });
  52. };
  53. }
  54. }
  55. })