|
@@ -12,7 +12,14 @@
|
|
></span>
|
|
></span>
|
|
</el-descriptions-item>
|
|
</el-descriptions-item>
|
|
<el-descriptions-item :span="1" label="涉及整改code">{{openitem.questionnaireId}}</el-descriptions-item>
|
|
<el-descriptions-item :span="1" label="涉及整改code">{{openitem.questionnaireId}}</el-descriptions-item>
|
|
- <el-descriptions-item :span="2" label="存在问题描述">{{openitem.description}}</el-descriptions-item>
|
|
|
|
|
|
+ <el-descriptions-item :span="1" label="存在问题描述">{{openitem.description}}</el-descriptions-item>
|
|
|
|
+ <el-descriptions-item :span="1" label="审计文档">
|
|
|
|
+ <el-button
|
|
|
|
+ size="mini"
|
|
|
|
+ type="text"
|
|
|
|
+ @click="handleDoc(openitem.questionnaireId)"
|
|
|
|
+ >查看</el-button>
|
|
|
|
+ </el-descriptions-item>
|
|
<el-descriptions-item :span="1" label="开项级别">
|
|
<el-descriptions-item :span="1" label="开项级别">
|
|
<span
|
|
<span
|
|
v-for="dict in dict.type.t_open_item_level"
|
|
v-for="dict in dict.type.t_open_item_level"
|
|
@@ -125,6 +132,17 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ handleDoc(id) {
|
|
|
|
+ this.visible = false;
|
|
|
|
+ this.$router.push({
|
|
|
|
+ path: '/rc/file',
|
|
|
|
+ query: {
|
|
|
|
+ linkId: id,
|
|
|
|
+ linkName: 'questionnaire',
|
|
|
|
+ auditResult: '绿区',
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
init(openitem, taskId, processId, taskName, type) {
|
|
init(openitem, taskId, processId, taskName, type) {
|
|
this.title = type == 1 ? '查看开项审批流程': '处理开项审批流程';
|
|
this.title = type == 1 ? '查看开项审批流程': '处理开项审批流程';
|
|
this.getUserList();
|
|
this.getUserList();
|