|
@@ -6,6 +6,13 @@
|
|
|
<el-descriptions-item :span="2" label="细分章节">{{progress.subChapName}}</el-descriptions-item>
|
|
|
<el-descriptions-item :span="2" label="二级细分章节">{{progress.secSubChapName}}</el-descriptions-item>
|
|
|
<el-descriptions-item :span="2" label="内容">{{progress.content}}</el-descriptions-item>
|
|
|
+ <el-descriptions-item :span="1" label="审计文档">
|
|
|
+ <el-button
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ @click="handleDoc(progress.questionnaireId)"
|
|
|
+ >查看</el-button>
|
|
|
+ </el-descriptions-item>
|
|
|
<el-descriptions-item :span="1" label="负责人">
|
|
|
<span
|
|
|
v-for="dict in userOptions"
|
|
@@ -37,7 +44,6 @@
|
|
|
v-text="dict.label"
|
|
|
></span>
|
|
|
</el-descriptions-item>
|
|
|
- <el-descriptions-item :span="1" label=""></el-descriptions-item>
|
|
|
<el-descriptions-item :span="2" label="备注">{{progress.remarks}}</el-descriptions-item>
|
|
|
</el-descriptions>
|
|
|
|
|
@@ -108,6 +114,17 @@ export default {
|
|
|
created() {
|
|
|
},
|
|
|
methods: {
|
|
|
+ handleDoc(id) {
|
|
|
+ this.visible = false;
|
|
|
+ this.$router.push({
|
|
|
+ path: '/rc/file',
|
|
|
+ query: {
|
|
|
+ linkId: id,
|
|
|
+ linkName: 'questionnaire',
|
|
|
+ auditResult: '绿区',
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
init(progress, taskId, processId, taskName, type) {
|
|
|
this.getUserList();
|
|
|
this.progress = progress;
|