|
@@ -683,6 +683,7 @@ export default {
|
|
|
this.handleComfirmNo();
|
|
|
break;
|
|
|
case "打回":
|
|
|
+ this.operateName = "打回"
|
|
|
this.handleBackRecord();
|
|
|
break;
|
|
|
case "确认需求":
|
|
@@ -895,7 +896,9 @@ export default {
|
|
|
},
|
|
|
params: {
|
|
|
woNo: this.woNo,
|
|
|
- remark: this.remark,
|
|
|
+ remark: [this.operateName, this.remark]
|
|
|
+ .filter((el) => el !== "")
|
|
|
+ .join(","),
|
|
|
},
|
|
|
}).then(({ data: { desc } }) => {
|
|
|
console.log(desc);
|
|
@@ -959,7 +962,9 @@ export default {
|
|
|
// 需求描述
|
|
|
demandDesc: this.infolist.demandDesc,
|
|
|
// 审批说明
|
|
|
- remark: this.remark,
|
|
|
+ remark: [this.operateName, this.remark]
|
|
|
+ .filter((el) => el !== "")
|
|
|
+ .join(","),
|
|
|
// 审核人员
|
|
|
loginNameList: this.treeList.length
|
|
|
? this.treeList.map((el) => {
|