diff --git a/src/views/modules/part/routingManagement.vue b/src/views/modules/part/routingManagement.vue index 33ca51f..e059758 100644 --- a/src/views/modules/part/routingManagement.vue +++ b/src/views/modules/part/routingManagement.vue @@ -3504,6 +3504,7 @@ export default { type: "warning" }).then(() => { let tempData = { + updateBy: this.$store.state.user.name, informationList: this.checkedDetail } deleteRoutingComponent(tempData).then(({data}) => { @@ -4175,6 +4176,7 @@ export default { cancelButtonText: '取消', type: 'warning' }).then(() => { + this.detailData.updateBy = this.$store.state.user.site routingDetailDelete(this.detailData).then(({data}) => { if (data && data.code === 0) { this.detailData = data.rows.detailData @@ -4204,6 +4206,7 @@ export default { cancelButtonText: '取消', type: 'warning' }).then(() => { + this.detailData.updateBy = this.$store.state.user.name updateAlternativeStatus(this.detailData).then(({data}) => { if (data && data.code === 0) { this.detailDataList = data.rows.detailDataList @@ -4272,6 +4275,7 @@ export default { // 临时Routing转为正式Routing toBecomeOfficialRouting () { + this.detailData.updateBy = this.$store.state.user.name this.toBecomeOfficialLoading = true toBecomeOfficialRouting(this.detailData).then(({data}) => { if (data && data.code === 0) { @@ -4364,6 +4368,7 @@ export default { type: "warning" }).then(() => { let tempData = { + updateBy: this.$store.state.user.name, informationList: this.checkedTool } deleteRoutingTool(tempData).then(({data}) => {