@@ -287,7 +287,7 @@
}
},
- async open(type, versions, categoryId, treeId) {
+ async open(type, versions, categoryId, treeId, isTemp) {
this.attributeData = {};
this.attributeData.bomType = type;
@@ -297,7 +297,8 @@
const res = await getBomTreeList({
categoryId,
versions,
- bomType: type
+ bomType: type,
+ isTemp
});
this.bomTreeList = res.data;
@@ -283,6 +283,11 @@
treeId: {
type: String,
default: ''
+ },
+
+ isTemp: {
+ type: Number,
+ default: 0
@@ -353,7 +358,8 @@
this.attributeData.bomType,
this.attributeData.versions,
this.attributeData.categoryId,
- this.newTreeId
+ this.newTreeId,
+ this.isTemp
);
@@ -256,6 +256,7 @@
>
<detailedList
v-if="activeName == '明细表'"
+ :isTemp="searchObj.isTemp"
:attributeData="currentNodeData"
:treeId="treeId"
></detailedList>