|
@@ -118,9 +118,9 @@
|
|
|
|
|
|
<el-table border v-loading="loading" :data="progressList" @selection-change="handleSelectionChange">
|
|
<el-table border v-loading="loading" :data="progressList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
- <el-table-column label="章节" align="center" prop="chapName" width="200" />
|
|
|
|
- <el-table-column label="细分章节" align="center" prop="subChapName" width="200" />
|
|
|
|
- <el-table-column label="二级细分章节" align="center" prop="secSubChapName" width="200" />
|
|
|
|
|
|
+ <el-table-column label="章节" align="center" prop="chapName" width="150" />
|
|
|
|
+ <el-table-column label="细分章节" align="center" prop="subChapName" width="150" />
|
|
|
|
+ <el-table-column label="二级细分章节" align="center" prop="secSubChapName" width="150" />
|
|
<el-table-column label="序号" align="center" prop="code" width="80" />
|
|
<el-table-column label="序号" align="center" prop="code" width="80" />
|
|
<el-table-column label="名称" align="center" prop="name" width="350" />
|
|
<el-table-column label="名称" align="center" prop="name" width="350" />
|
|
<el-table-column label="内容" align="center" prop="content" width="200" />
|
|
<el-table-column label="内容" align="center" prop="content" width="200" />
|
|
@@ -151,12 +151,26 @@
|
|
<dict-tag :options="dict.type.t_progress_description" :value="scope.row.progress"/>
|
|
<dict-tag :options="dict.type.t_progress_description" :value="scope.row.progress"/>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="审批状态" align="center" prop="applyStatus" width="100">
|
|
|
|
|
|
+ <el-table-column label="备注" align="center" prop="remarks" width="200" />
|
|
|
|
+ <el-table-column label="审批状态" align="center" prop="applyStatus" width="120" fixed="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
- <dict-tag :options="dict.type.t_progress_apply_status" :value="scope.row.applyStatus"/>
|
|
|
|
|
|
+ <span v-if="scope.row.applyStatus == 1">
|
|
|
|
+ <svg-icon icon-class="roundGrey" style="font-size: 10px; margin: 0px 4px;"></svg-icon>
|
|
|
|
+ </span>
|
|
|
|
+ <span v-if="scope.row.applyStatus == 2">
|
|
|
|
+ <svg-icon icon-class="roundYellow" style="font-size: 10px; margin: 0px 4px;"></svg-icon>
|
|
|
|
+ </span>
|
|
|
|
+ <span v-if="scope.row.applyStatus == 3">
|
|
|
|
+ <svg-icon icon-class="roundRed" style="font-size: 10px; margin: 0px 4px;"></svg-icon>
|
|
|
|
+ </span>
|
|
|
|
+ <span v-if="scope.row.applyStatus == 4">
|
|
|
|
+ <svg-icon icon-class="roundGreen" style="font-size: 10px; margin: 0px 4px;"></svg-icon>
|
|
|
|
+ </span>
|
|
|
|
+ <span>
|
|
|
|
+ <dict-tag :options="dict.type.t_progress_apply_status" :value="scope.row.applyStatus" style="display: inline;"/>
|
|
|
|
+ </span>
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="备注" align="center" prop="remarks" width="200" />
|
|
|
|
<el-table-column label="审计文档" align="center" width="100" fixed="right">
|
|
<el-table-column label="审计文档" align="center" width="100" fixed="right">
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
<el-button icon="el-icon-folder" style="color:#6e96fa;" circle @click="handleDoc(scope.row , 'audit')"></el-button>
|
|
<el-button icon="el-icon-folder" style="color:#6e96fa;" circle @click="handleDoc(scope.row , 'audit')"></el-button>
|