feat(hrm): 新增人力资源管理系统功能模块

新增请假、外出、报餐等HRM功能模块及相关组件
添加审批流程管理及待办事项功能
扩展用户信息存储nickName字段
优化部门选择组件及代理配置
This commit is contained in:
砂糖
2026-01-20 18:05:09 +08:00
parent 5432f0c3eb
commit fd942a638e
14 changed files with 1346 additions and 30 deletions

View File

@@ -0,0 +1,17 @@
<template>
</template>
<script>
import { listDept } from '@/api/wms/hrm/dept'
export default {
name: 'DeptSelect',
props: {
value: {
type: String,
default: ''
}
}
}
</script>