|
@@ -192,6 +192,7 @@ import {
|
|
|
processStructure,
|
|
|
handleWorkOrder,
|
|
|
activeOrder,
|
|
|
+ asyncPlayLog,
|
|
|
queryAllOrgan
|
|
|
} from '@/api/process/work-order'
|
|
|
|
|
@@ -360,9 +361,11 @@ export default {
|
|
|
work_order_id: parseInt(this.$route.query.workOrderId),
|
|
|
remarks: this.dataList.remarks,
|
|
|
tpls: this.tpls
|
|
|
- }).then(response => {
|
|
|
+ }).then(async (response) => {
|
|
|
if (response.code === 200) {
|
|
|
// this.$router.push({ name: 'upcoming' })
|
|
|
+
|
|
|
+ await asyncPlayLog({ workOrderId: parseInt(this.$route.query.workOrderId) })
|
|
|
// window.location.reload()
|
|
|
this.getProcessNodeList()
|
|
|
}
|