|
@@ -1,4 +1,4 @@
|
|
|
-<!-- 我的工作台 -->
|
|
|
+<!-- 我的工单 -->
|
|
|
<template>
|
|
|
<div class="works">
|
|
|
<el-form :model="dataForm" :inline="true">
|
|
@@ -245,7 +245,7 @@
|
|
|
"
|
|
|
type="text"
|
|
|
size="small"
|
|
|
- @click="submitTask(scope.row.nodeId, scope.row.productionId)"
|
|
|
+ @click="submitTask(scope.row.nodeId, scope.row.productionId, scope.row.taskId)"
|
|
|
>提审理单</el-button
|
|
|
>
|
|
|
</template>
|
|
@@ -1046,7 +1046,12 @@ export default {
|
|
|
this.finishDialogForm.taskIds = this.multipleSelection.map(t => t.taskId)
|
|
|
}
|
|
|
},
|
|
|
- submitTask () {
|
|
|
+ submitTask (nodeId, productionId, taskId) {
|
|
|
+ getTechList(taskId).then(({data}) => {
|
|
|
+ if (data && data.code === '200') {
|
|
|
+ this.techOptions = data.data
|
|
|
+ }
|
|
|
+ })
|
|
|
this.submitDialogFormVisible = true
|
|
|
},
|
|
|
submitSubmit () {
|