/* * @Author: Badguy * @Date: 2022-04-11 11:05:04 * @LastEditTime: 2022-04-11 11:57:08 * @LastEditors: your name * @Description: 标段树 * have a nice day! */ export default { data() { return { sectionTree: [ { SectionId: -1, SectionName: '标段1', SectionUpid: -2, disabled: true, children: [] } ], sectionCheckedKeys: [], sectionList: [] } }, methods: { sectionCheckChangeHandler() {}, async getSectionTree() {} } }