This commit is contained in:
guochunsi
2026-01-27 13:48:18 +08:00
parent c5eea52c46
commit b3ea5ee1ee
25 changed files with 192 additions and 428 deletions

View File

@@ -142,6 +142,16 @@ export const TURNOVER_AUDIT_STATUS_LIST = [
{ label: "通过", value: "3" ,type: "success", icon: "CircleCheck"}
];
// 人事模块
// 专业审核状态选项(用于 AuditState 组件), 学历学位审核状态选项
import type { StateOption } from '/@/components/AuditState/index.vue'
export const PROFESSIONAL_AUDIT_STATE_OPTIONS: StateOption[] = [
{ value: '1', label: '已通过', type: 'success', icon: 'fa-solid fa-circle-check', effect: 'dark' },
{ value: '-2', label: '已驳回', type: 'danger', icon: 'fa-solid fa-circle-xmark', effect: 'dark' },
{ value: '0', label: '待审核', type: 'warning', icon: 'fa-regular fa-clock', effect: 'light' }
];
/**
* 根据值从状态列表中获取配置项
* @param statusList 状态列表