flat: 工资单位

This commit is contained in:
Apcallover
2024-04-09 10:44:52 +08:00
parent bcbf259dfb
commit caf55a7ff2
5 changed files with 91 additions and 18 deletions

View File

@@ -283,6 +283,17 @@ const companyEnum = [
{ value: 11, label: "其它" },
]
const wageUnitCategoryState = [[
{ id: 1, label: "元/人·时", disable: false },
{ id: 2, label: "元/人·天", disable: false },
{ id: 3, label: "元/人·月", disable: true },
{ id: 4, label: "其他", disable: true },
// { value: 0, label: "元/人·次", disable: true },
// { value: 4, label: "元/人·周", disable: true },
// { value: 5, label: "元/人·个", disable: true },
// { value: 6, label: "元/人·件", disable: true },
]];
export default {
salary,
taskSalary,
@@ -290,5 +301,7 @@ export default {
natureArr,
ageArr,
eduArr,
expeArr,companyEnum
expeArr,
companyEnum,
wageUnitCategoryState
}