sectionTree.js 543 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * @Author: Badguy
  3. * @Date: 2022-04-11 11:05:04
  4. * @LastEditTime: 2022-04-11 11:57:08
  5. * @LastEditors: your name
  6. * @Description: 标段树
  7. * have a nice day!
  8. */
  9. export default {
  10. data() {
  11. return {
  12. sectionTree: [
  13. {
  14. SectionId: -1,
  15. SectionName: '标段1',
  16. SectionUpid: -2,
  17. disabled: true,
  18. children: []
  19. }
  20. ],
  21. sectionCheckedKeys: [],
  22. sectionList: []
  23. }
  24. },
  25. methods: {
  26. sectionCheckChangeHandler() {},
  27. async getSectionTree() {}
  28. }
  29. }