[问题修复](pet):

修复持证人员信息管理列表,人员持证数和详情不一致问题
  修复证件信息管理人员数与详情人员数不一致问题
pet
huangyuxuan 2024-11-19 18:03:33 +08:00
parent c97736a3cb
commit d2aeb1b34c
3 changed files with 6 additions and 4 deletions

View File

@ -70,6 +70,7 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="page-btn-group"> <div class="page-btn-group">
<div></div>
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList" /> <pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList" />
</div> </div>
</div> </div>

View File

@ -1,7 +1,8 @@
<template> <template>
<keep-alive exclude="CorpUserList"> <div>
<component :is="activeName" /> <CardOverdueList v-show="activeName==='CardOverdueList'" />
</keep-alive> <CorpUserList v-if="activeName==='corpUserList'" />
</div>
</template> </template>
<script> <script>

View File

@ -101,7 +101,7 @@
<el-table-column :formatter="(row) => formatDictionaryLabel(row, '0')" prop="EMPLOYMENT_FORM" label="用工形式" /> <el-table-column :formatter="(row) => formatDictionaryLabel(row, '0')" prop="EMPLOYMENT_FORM" label="用工形式" />
<el-table-column :formatter="(row) => formatDictionaryLabel(row, '1')" prop="SELECT_FORM" label="选取形式" /> <el-table-column :formatter="(row) => formatDictionaryLabel(row, '1')" prop="SELECT_FORM" label="选取形式" />
<el-table-column prop="ruserCount" label="持证人员数"/> <el-table-column prop="ruserCount" label="持证人员数"/>
<el-table-column prop="userCount" label="证书数"/> <el-table-column prop="specialUserCount" label="证书数"/>
<el-table-column label="操作" align="left" width="110"> <el-table-column label="操作" align="left" width="110">
<template slot-scope="{row}"> <template slot-scope="{row}">
<el-button type="success" icon="el-icon-view" size="mini" @click="toCorpUserPage(row.CORPINFO_ID)"></el-button> <el-button type="success" icon="el-icon-view" size="mini" @click="toCorpUserPage(row.CORPINFO_ID)"></el-button>