a
This commit is contained in:
@@ -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 状态列表
|
||||
|
||||
Reference in New Issue
Block a user