|
@@ -66,10 +66,10 @@
|
|
|
</el-table-column>
|
|
|
<el-table-column label="负责状态" align="center" width="160">
|
|
|
<template slot-scope="scope">
|
|
|
- <template v-if="scope.row.finCompRate !='100.0%'">
|
|
|
+ <template v-if="scope.row.compRate !='100.0%'">
|
|
|
<span>待完善</span>
|
|
|
</template>
|
|
|
- <template v-if="scope.row.finCompRate =='100.0%' && scope.row.authState == '1'">
|
|
|
+ <template v-if="scope.row.compRate =='100.0%'">
|
|
|
<span>已完善</span>
|
|
|
</template>
|
|
|
<template v-if="scope.row.authState == '2'">
|
|
@@ -89,18 +89,22 @@
|
|
|
<el-table-column label="操作" align="center" width="180" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button type="text" @click="handleView(scope.row)">查看</el-button>
|
|
|
- <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
|
|
|
+ <template v-if="scope.row.attachCnt != 0">
|
|
|
+ <el-button type="text" @click="handleDownload(scope.row)">下载</el-button>
|
|
|
+ </template>
|
|
|
<el-button type="text" @click="handleDelete(scope.row)">删除</el-button>
|
|
|
<template v-if="roleType == 'entAdmin' || roleType == 'entUser'">
|
|
|
<el-button type="text" @click="handleEdit(scope.row)">编辑</el-button>
|
|
|
- <template v-if="scope.row.finCompRate == '100.0%' && scope.row.reportState == '1'">
|
|
|
+ <template v-if="scope.row.compRate == '100.0%' && scope.row.reportState == '1'">
|
|
|
<el-button type="text" @click="handleDeclare(scope.row)">提交申报</el-button>
|
|
|
</template>
|
|
|
- <template v-if="scope.row.finCompRate == '100.0%' && (scope.row.reportState == '2' || scope.row.reportState == '3') ">
|
|
|
+ <template v-if="scope.row.compRate == '100.0%' && (scope.row.reportState == '2' || scope.row.reportState == '3') ">
|
|
|
<el-button type="text" @click="handleDeclare(scope.row)">重新申报</el-button>
|
|
|
</template>
|
|
|
- <template v-if="scope.row.finCompRate == '100.0%' && (userType == 'ENT_TECH' || userType == 'ENT_FIN') && (scope.row.authState == '1' || scope.row.authState == '4')">
|
|
|
- <el-button type="text" @click="handleAudit(scope.row)">提交审核</el-button>
|
|
|
+ <template v-if="scope.row.compRate == '100.0%' && (userType == 'ENT_TECH' || userType == 'ENT_FIN')">
|
|
|
+ <!-- && (scope.row.authState == '1' || scope.row.authState == '4') -->
|
|
|
+ <el-button type="text" @click="handleAudit(scope.row)" v-if="scope.row.authState == '1'">提交审核</el-button>
|
|
|
+ <el-button type="text" @click="handleAudit(scope.row)" v-else-if="scope.row.authState == '4'">重新提交审核</el-button>
|
|
|
</template>
|
|
|
<template v-if="scope.row.authState == '2' && (userType == 'ENT_ADMIN_TECH' || userType == 'ENT_ADMIN_FIN')">
|
|
|
<el-button type="text" @click="handleAuditAdmin(scope.row)">审核</el-button>
|