|
@@ -174,7 +174,7 @@
|
|
|
</template> -->
|
|
</template> -->
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
|
|
|
- <el-table-column label="操作" width="180" align="center">
|
|
|
|
|
|
|
+ <el-table-column label="操作" width="250" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<!-- 文字按钮样式 -->
|
|
<!-- 文字按钮样式 -->
|
|
|
<el-button
|
|
<el-button
|
|
@@ -201,6 +201,14 @@
|
|
|
>
|
|
>
|
|
|
意见反馈
|
|
意见反馈
|
|
|
</el-button>
|
|
</el-button>
|
|
|
|
|
+ <el-button
|
|
|
|
|
+ v-if="scope.row.status === '600'"
|
|
|
|
|
+ size="mini"
|
|
|
|
|
+ type="text"
|
|
|
|
|
+ @click="handleMaterials(scope.row)"
|
|
|
|
|
+ >
|
|
|
|
|
+ 补充材料
|
|
|
|
|
+ </el-button>
|
|
|
<el-button size="mini" type="text" @click="handleMessage(scope.row)">
|
|
<el-button size="mini" type="text" @click="handleMessage(scope.row)">
|
|
|
查看
|
|
查看
|
|
|
</el-button>
|
|
</el-button>
|
|
@@ -335,6 +343,19 @@
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|
|
|
|
|
+ // 补充材料:打开 TaskFillIn,默认切到“报送资料”并打开补充材料弹窗
|
|
|
|
|
+ handleMaterials(row) {
|
|
|
|
|
+ this.currentTaskInfo = row || {}
|
|
|
|
|
+ this.taskViewMode = false
|
|
|
|
|
+ this.$nextTick(() => {
|
|
|
|
|
+ if (this.$refs.taskFillIn) {
|
|
|
|
|
+ this.$refs.taskFillIn.open(row, false, {
|
|
|
|
|
+ activeTab: 'dataRequirements',
|
|
|
|
|
+ openMaterialDialog: true,
|
|
|
|
|
+ })
|
|
|
|
|
+ }
|
|
|
|
|
+ })
|
|
|
|
|
+ },
|
|
|
// 填报任务弹窗关闭
|
|
// 填报任务弹窗关闭
|
|
|
handleTaskFillInClose() {
|
|
handleTaskFillInClose() {
|
|
|
this.taskFillInVisible = false
|
|
this.taskFillInVisible = false
|