| | |
| | | import { Button } from 'ant-design-vue'; |
| | | |
| | | import { z } from '#/adapter/form'; |
| | | import { getSalaryStructureList } from '#/api/hrm/salary/structure'; |
| | | import { getDeptList } from '#/api/system/dept'; |
| | | import { getSimplePostList } from '#/api/system/post'; |
| | | import { getSimpleRoleList } from '#/api/system/role'; |
| | |
| | | }, |
| | | }, |
| | | { |
| | | fieldName: 'nation', |
| | | label: '民族', |
| | | component: 'Input', |
| | | componentProps: { |
| | | placeholder: '请输入民族', |
| | | }, |
| | | }, |
| | | { |
| | | fieldName: 'marriageStatus', |
| | | label: '婚姻状态', |
| | | component: 'Input', |
| | | componentProps: { |
| | | placeholder: '请输入婚姻状态', |
| | | }, |
| | | }, |
| | | { |
| | | fieldName: 'age', |
| | | label: '年龄', |
| | | component: 'InputNumber', |
| | | componentProps: { |
| | | placeholder: '请输入年龄', |
| | | min: 0, |
| | | max: 150, |
| | | style: { width: '100%' }, |
| | | }, |
| | | }, |
| | | { |
| | | fieldName: 'education', |
| | | label: '学历', |
| | | component: 'Input', |
| | | componentProps: { |
| | | placeholder: '请输入学历', |
| | | }, |
| | | }, |
| | | { |
| | | fieldName: 'politicalStatus', |
| | | label: '政治面貌', |
| | | component: 'Input', |
| | | componentProps: { |
| | | placeholder: '请输入政治面貌', |
| | | }, |
| | | }, |
| | | { |
| | | fieldName: 'annualLeaveBalance', |
| | | label: '年假余额', |
| | | component: 'InputNumber', |
| | |
| | | precision: 1, |
| | | style: { width: '100%' }, |
| | | }, |
| | | }, |
| | | { |
| | | fieldName: 'salaryStructureId', |
| | | label: '薪酬结构', |
| | | component: 'ApiSelect', |
| | | componentProps: { |
| | | api: () => getSalaryStructureList({ status: 0 }), |
| | | labelField: 'name', |
| | | valueField: 'id', |
| | | allowClear: true, |
| | | placeholder: '请选择薪酬结构', |
| | | }, |
| | | help: '决定工作日加班倍率;未选择时使用系统默认 1.5 倍', |
| | | }, |
| | | { |
| | | fieldName: 'baseSalary', |
| | |
| | | { field: 'phone', title: '手机号码', minWidth: 120 }, |
| | | { field: 'deptName', title: '部门', minWidth: 120 }, |
| | | { field: 'postName', title: '岗位', minWidth: 120 }, |
| | | { field: 'nation', title: '民族', width: 90 }, |
| | | { field: 'age', title: '年龄', width: 70 }, |
| | | { field: 'education', title: '学历', width: 90 }, |
| | | { |
| | | field: 'employeeStatus', |
| | | title: '员工状态', |