@@ -975,7 +975,15 @@ export default {
} else {
this.getTreeList();
}
- }
+ },
+
+ getRightTree() {
+ findProjectTree(this.projectForm.id, this.projectForm.referenceWbsTemplateId).then((res) => {
+ if (Array.isArray(res.data.data)) {
+ this.$refs.treetotree.setRightTree(res.data.data);
+ }
+ })
};