人像页面完成
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
15683799673
2025-06-27 22:19:56 +08:00
parent 3e8ba86305
commit b2d902a2e0
5 changed files with 31 additions and 8 deletions

View File

@@ -7,7 +7,7 @@ import type { PersonLibForm } from '#/api/sis/personLib/model';
import { Page, useVbenModal } from '@vben/common-ui';
import { getVxePopupContainer } from '@vben/utils';
import { Modal, Popconfirm, Space } from 'ant-design-vue';
import { Modal, Popconfirm, Space, Tag } from 'ant-design-vue';
import { useVbenVxeGrid, vxeCheckboxChecked } from '#/adapter/vxe-table';
import {
@@ -176,6 +176,11 @@ function handleDownloadExcel() {
</Popconfirm>
</Space>
</template>
<template #libType="{ row }">
<Tag v-if="row.libType == 1" color="#108ee9">人脸库</Tag>
<Tag v-else color="#2db7f5">工服库</Tag>
</template>
</BasicTable>
<PersonLibModal @reload="tableApi.query()" />
</Page>