提交修改

dev-captcha
dshclm 10 months ago
parent 3d50e49525
commit e117977c9b

@ -73,9 +73,10 @@
</el-table-column> </el-table-column>
<el-table-column label="状态" v-if="modalType === 'apply'" prop="status"> <el-table-column label="状态" v-if="modalType === 'apply'" prop="status">
<template v-slot:default="scope"> <template v-slot:default="scope">
<el-tag v-if="scope.row.childrenList.length === 0" type="warning"></el-tag> <el-tag v-if="scope.row.childrenList.length > 0 && scope.row.childrenList.every(child => child.state === 1)" type="success"></el-tag>
<el-tag v-else-if="checkAllUploaded(scope.row.childrenList)" type="success">已上传</el-tag> <el-tag v-else-if="scope.row.childrenList.length > 0 && scope.row.childrenList.every(child => child.state === 2)" type="warning">已上传</el-tag>
<el-tag v-else type="warning">已上传</el-tag> <el-tag v-else-if="scope.row.childrenList.length > 0 && scope.row.childrenList.every(child => child.state === null)" type="success">已上传</el-tag>
<el-tag v-else type="warning">未上传</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作"> <el-table-column label="操作">
@ -143,9 +144,6 @@ export default {
console.log(this.templateType) console.log(this.templateType)
}, },
methods:{ methods:{
checkAllUploaded(childrenList) {
return childrenList.every(child => child.state === 1);
},
filePassMethod(row,status){ filePassMethod(row,status){
if (status === 'pass'){ if (status === 'pass'){
filePass(row.fileId,'1').then((res) => { filePass(row.fileId,'1').then((res) => {

Loading…
Cancel
Save