|
@@ -443,13 +443,13 @@ const props = defineProps({
|
|
type: [String, Number],
|
|
type: [String, Number],
|
|
default: '',
|
|
default: '',
|
|
},
|
|
},
|
|
- TreeAutoExpandKeys: {
|
|
|
|
|
|
+ treeAutoExpandKeys: {
|
|
type: [Array],
|
|
type: [Array],
|
|
- default: '',
|
|
|
|
|
|
+ default: () => ([]),
|
|
},
|
|
},
|
|
treenodeDataInfo: {
|
|
treenodeDataInfo: {
|
|
type: [Object],
|
|
type: [Object],
|
|
- default: {},
|
|
|
|
|
|
+ default: () => ({}),
|
|
},
|
|
},
|
|
|
|
|
|
})
|
|
})
|
|
@@ -471,7 +471,7 @@ const wbs_type = ref(props.wbsType)
|
|
const isStatus = ref(parseInt(props.status))
|
|
const isStatus = ref(parseInt(props.status))
|
|
const listDatas = ref([])
|
|
const listDatas = ref([])
|
|
const draw_type = ref(props.drawType)
|
|
const draw_type = ref(props.drawType)
|
|
-const tree_AutoExpandKeys = ref(props.TreeAutoExpandKeys)
|
|
|
|
|
|
+const tree_AutoExpandKeys = ref(props.treeAutoExpandKeys)
|
|
const treenodeDataInfo = ref(props.treenodeDataInfo)
|
|
const treenodeDataInfo = ref(props.treenodeDataInfo)
|
|
|
|
|
|
|
|
|