[问题修复](hyx_Batch-moderation):

新增相关方人员证件信息过期批量推送功能
hyx_Batch-moderation
huangyuxuan 2024-12-09 14:23:38 +08:00
parent d70d18039f
commit 933a5e995b
1 changed files with 12 additions and 0 deletions

View File

@ -79,6 +79,7 @@
</el-table>
<div class="page-btn-group">
<div>
<el-button type="primary" icon="el-icon-plus" @click="handleAdd"></el-button>
</div>
<pagination :total="total" :page.sync="listQuery.page" :limit.sync="listQuery.limit" @pagination="getList" />
</div>
@ -370,6 +371,17 @@ export default {
})
}).catch(() => {})
},
handleAdd() {
const _selectData = this.$refs.multipleTable.selection
if (_selectData == null || _selectData.length === 0) {
this.$message({
message: '未勾选人员...',
type: 'error'
})
return false
}
this.$refs.sendUtil.init(_selectData)
},
//
hasButton: function() {
var keys = 'corpinfo:add,corpinfo:del,corpinfo:edit,toExcel'