|
@@ -119,7 +119,7 @@ const props = defineProps({
|
|
|
},
|
|
|
isShowNumber:{
|
|
|
type:Boolean,
|
|
|
- default:true,
|
|
|
+ default:false,
|
|
|
},
|
|
|
|
|
|
})
|
|
@@ -260,7 +260,7 @@ const ElTreeLoadNode = async (node, resolve) => {
|
|
|
parentId,
|
|
|
projectId:projectId.value,
|
|
|
contractId:contractId.value,
|
|
|
- type:isShowNumber.value ? null : 1,
|
|
|
+ type:isShowNumber.value ? 1 : null,
|
|
|
})
|
|
|
//处理数据
|
|
|
if (!error && code === 200) {
|