|
|
|
@ -26,7 +26,7 @@
|
|
|
|
|
<el-table-column v-if="isShowUploadButton">
|
|
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="审核状态" align="center" >
|
|
|
|
|
<el-table-column label="审核状态" v-if="modalType !=='score'" align="center" >
|
|
|
|
|
<template slot-scope="scope" class="button-cell" >
|
|
|
|
|
<el-tag v-if="scope.row.state === 1" type="success">通过</el-tag>
|
|
|
|
|
<el-tag v-else-if="scope.row.state === 2" type="warning">不通过</el-tag>
|
|
|
|
@ -40,6 +40,9 @@
|
|
|
|
|
<el-button size="small" type="text" icon="el-icon-close" @click="filePassMethod(scope.row,'nopass')" v-if="templateType==='aduit'">不通过</el-button>
|
|
|
|
|
<el-button size="small" type="text" icon="el-icon-delete" @click="deleteHandle(scope.row.fileId,scope)" v-if="templateType==='apply'">删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
<template slot-scope="scope" v-else-if="isShowButton && templateType ==='applyView'">
|
|
|
|
|
<el-button size="small" type="text" icon="el-icon-download" @click="downloadFile(scope.row.fileId,scope.row.name)">下载</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
</template>
|
|
|
|
@ -61,10 +64,18 @@
|
|
|
|
|
</el-upload>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="状态" prop="status">
|
|
|
|
|
<el-table-column label="状态" v-if="modalType === 'aduit' && dialogType!=='view'" prop="status">
|
|
|
|
|
<template v-slot:default="scope">
|
|
|
|
|
<el-tag v-if="scope.row.childrenList.length === 0" type="warning">未审核</el-tag>
|
|
|
|
|
<el-tag v-else-if="checkAllUploaded(scope.row.childrenList)" type="success">已审核</el-tag>
|
|
|
|
|
<el-tag v-else type="warning">未审核</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="状态" v-if="modalType === 'apply'" prop="status">
|
|
|
|
|
<template v-slot:default="scope">
|
|
|
|
|
<el-tag v-if="scope.row.childrenList.length === 0" type="warning">未上传</el-tag>
|
|
|
|
|
<el-tag v-else type="success">已上传</el-tag>
|
|
|
|
|
<el-tag v-else-if="checkAllUploaded(scope.row.childrenList)" type="success">已上传</el-tag>
|
|
|
|
|
<el-tag v-else type="warning">已上传</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作">
|
|
|
|
@ -114,6 +125,12 @@ export default {
|
|
|
|
|
isShowUploadButton:{
|
|
|
|
|
type:Boolean,
|
|
|
|
|
},
|
|
|
|
|
modalType: {
|
|
|
|
|
type:String,
|
|
|
|
|
},
|
|
|
|
|
view:{
|
|
|
|
|
type:Boolean,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
@ -126,6 +143,9 @@ export default {
|
|
|
|
|
console.log(this.templateType)
|
|
|
|
|
},
|
|
|
|
|
methods:{
|
|
|
|
|
checkAllUploaded(childrenList) {
|
|
|
|
|
return childrenList.every(child => child.state === 1);
|
|
|
|
|
},
|
|
|
|
|
filePassMethod(row,status){
|
|
|
|
|
if (status === 'pass'){
|
|
|
|
|
filePass(row.fileId,'1').then((res) => {
|
|
|
|
|