| | |
| | | parentName: "", |
| | | childrenName: "" |
| | | }, |
| | | index: "", |
| | | tempIndex: "" |
| | | index: null, |
| | | tempIndex: null |
| | | } |
| | | }, |
| | | |
| | |
| | | this.$set(this.selectedTemp, "parentName", this.selectedItem.parentName); |
| | | this.$set(this.selectedTemp, "childrenId", this.selectedItem.childrenId); |
| | | this.$set(this.selectedTemp, "childrenName", this.selectedItem.childrenName); |
| | | this.tempIndex = this.index; |
| | | if (this.index != "" && this.categoryList[this.index].hasChildren) { |
| | | this.childList = this.categoryList[this.index].children; |
| | | if (this.index != null) { |
| | | this.tempIndex = this.index; |
| | | if ((this.index != "" || this.index != null) && this.categoryList[this.index].hasChildren) { |
| | | this.childList = this.categoryList[this.index].children; |
| | | } |
| | | if (this.index == "" || this.index == null) { |
| | | this.childList = []; |
| | | } |
| | | } |
| | | if (this.index == "") { |
| | | this.childList = []; |
| | | } |
| | | |
| | | } |
| | | this.isShow = false; |
| | | }, |