|
|
|
@ -50,38 +50,42 @@
|
|
|
|
<template v-slot:course_signs_count>
|
|
|
|
<template v-slot:course_signs_count>
|
|
|
|
<el-table-column align='center' label="目前报名人数" width="120" header-align="center">
|
|
|
|
<el-table-column align='center' label="目前报名人数" width="120" header-align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div style="cursor: 'pointer';color: 'blue';text-decoration: 'underline'"
|
|
|
|
<div v-if="scope.row.course_signs_count && scope.row.course_signs_count>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
|
|
@click="toApply(scope.row,'')">
|
|
|
|
@click="toApply(scope.row,'')">
|
|
|
|
{{scope.row.course_signs_count?scope.row.course_signs_count:0}}
|
|
|
|
{{scope.row.course_signs_count}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else>0</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<template v-slot:sign_pass_total>
|
|
|
|
<template v-slot:sign_pass_total>
|
|
|
|
<el-table-column align='center' label="审核通过人数" width="120" header-align="center">
|
|
|
|
<el-table-column align='center' label="审核通过人数" width="120" header-align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div style="cursor: 'pointer';color: 'blue'; text-decoration: 'underline'"
|
|
|
|
<div v-if="scope.row.sign_pass_total && scope.row.sign_pass_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
|
|
@click="toApply(scope.row,1)">{{scope.row.sign_pass_total?scope.row.sign_pass_total:0}}</div>
|
|
|
|
@click="toApply(scope.row,1)">{{scope.row.sign_pass_total}}</div>
|
|
|
|
|
|
|
|
<div v-else>0</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<template v-slot:sign_fault_total>
|
|
|
|
<template v-slot:sign_fault_total>
|
|
|
|
<el-table-column align='center' label="审核不通过人数" width="120" header-align="center">
|
|
|
|
<el-table-column align='center' label="审核不通过人数" width="120" header-align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div style="cursor: 'pointer';color: 'blue';text-decoration: 'underline'"
|
|
|
|
<div v-if="scope.row.sign_fault_total && scope.row.sign_fault_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
|
|
@click="toApply(scope.row,2)">
|
|
|
|
@click="toApply(scope.row,2)">
|
|
|
|
{{scope.row.sign_fault_total?scope.row.sign_fault_total:0}}
|
|
|
|
{{scope.row.sign_fault_total}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else>0</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<template v-slot:sign_wait_total>
|
|
|
|
<template v-slot:sign_wait_total>
|
|
|
|
<el-table-column align='center' label="待审核人数" width="120" header-align="center">
|
|
|
|
<el-table-column align='center' label="待审核人数" width="120" header-align="center">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<div style="cursor: 'pointer';color: 'blue';text-decoration: 'underline'"
|
|
|
|
<div v-if="scope.row.sign_wait_total && scope.row.sign_wait_total>0" style="cursor: pointer;color:blue;text-decoration:underline"
|
|
|
|
@click="toApply(scope.row,0)">
|
|
|
|
@click="toApply(scope.row,0)">
|
|
|
|
{{scope.row.sign_wait_total?scope.row.sign_wait_total:0}}
|
|
|
|
{{scope.row.sign_wait_total}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else>0</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
|