|
|
@@ -638,6 +638,8 @@
|
|
|
});
|
|
|
},
|
|
|
chooseStepModal(data, current) {
|
|
|
+ console.log(data, 'data');
|
|
|
+ console.log(current, 'current');
|
|
|
if (data?.length > 0) {
|
|
|
let params = data.map((item) => {
|
|
|
const itemData = {
|
|
|
@@ -648,7 +650,7 @@
|
|
|
bomCategoryId: this.taskParam.id,
|
|
|
categoryCode: this.taskParam.categoryCode
|
|
|
};
|
|
|
- itemData.type = item.type.code;
|
|
|
+ // itemData.type = item.type.code;
|
|
|
return itemData;
|
|
|
});
|
|
|
workingStepSave(params).then((data) => {
|