| | |
| | | import { EnumBillingMethod, EnumUserGender, EnumSettlementCycle } from './apiEnum'; |
| | | import { |
| | | EnumBillingMethod, |
| | | EnumUserGender, |
| | | EnumSettlementCycle, |
| | | EnumTaskReleaseStatus, |
| | | EnumTaskCheckReceiveStatus, |
| | | } from './apiEnum'; |
| | | |
| | | export const EnumBillingMethodText = { |
| | | [EnumBillingMethod.Month]: '按月', |
| | |
| | | [EnumBillingMethod.Hour]: '元/小时', |
| | | [EnumBillingMethod.Piece]: '元/件', |
| | | }; |
| | | |
| | | export const EnumTaskReleaseStatusText = { |
| | | [EnumTaskReleaseStatus.InProcess]: '发布中', |
| | | [EnumTaskReleaseStatus.Stopped]: '已停止', |
| | | }; |
| | | |
| | | export const EnumTaskCheckReceiveStatusText = { |
| | | [EnumTaskCheckReceiveStatus.Wait]: '待验收', |
| | | [EnumTaskCheckReceiveStatus.Completed]: '已验收', |
| | | }; |