chris 1 年之前
父節點
當前提交
a57cbf08e0
共有 1 個文件被更改,包括 8 次插入3 次删除
  1. 8 3
      src/views/modules/works/work.vue

+ 8 - 3
src/views/modules/works/work.vue

@@ -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 () {