油批
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

83 lines
1.2 KiB

2 years ago
// 炼厂类型
2 years ago
export const refineryTypeEnum = [
{
label: "普通炼厂",
value: "COMMON",
},
];
2 years ago
// 炼厂账户类型
2 years ago
export const refineryAccountTypeEnum = [
{
label: "普通炼厂",
value: "COMMON",
},
];
2 years ago
// 交易类型
export const rechargeTypeEnum = [
{
label: "充值",
value: "RECHARGE",
},
2 years ago
// {
// label: "销账",
// value: "REVOKE",
// },
// {
// label: "赊销",
// value: "CHARGE_SALES",
// },
2 years ago
{
label: "消费返利",
value: "CONSUME_REBATE",
},
];
// 交易状态
export const rechargeStatusEnum = [
{
label: "已申请",
value: 0,
},
{
label: "已成功",
value: 1,
},
{
label: "已撤销",
value: -1,
},
];
// 赊销还款审核
export const repaymentExamineEnum = [
{
label: "还款待审核",
value: 0,
},
{
label: "还款成功",
value: 1,
},
{
label: "还款失败",
value: -1,
},
{
label: "待还款",
value: -2,
},
];
2 years ago
// 账户状态
export const accountStatusEnum = [
{
label: "禁用",
value: 0,
},
{
label: "启用",
value: 1,
},
{
label: "冻结",
value: -1,
},
];