localhost_oa_front/src/enums/contractEnum.ts

7 lines
158 B
TypeScript
Raw Normal View History

2024-02-29 16:51:37 +08:00
export enum ContractStatusEnum {
Pending = 0, // 待审核
Approved = 1, // 已通过
Rejected = 2, // 已拒绝
}
// 使用es6数组方法遍历枚举