This commit is contained in:
张良(004796)
2024-01-03 18:14:36 +08:00
parent 810eec3d55
commit 35ef7f0cea
10 changed files with 1060 additions and 28 deletions

View File

@@ -71,7 +71,7 @@ export const memberTypeList = [
export const memberStatusList = [
{ value: 0, label: '可用' ,listClass: listClass.info},
{ value: 1, label: '过期' ,listClass: listClass.warning},
{ value: 1, label: '不可用' ,listClass: listClass.danger},
{ value: 2, label: '不可用' ,listClass: listClass.danger},
]
export const yesOrNoList = [
@@ -174,3 +174,15 @@ export const reportStatusList = [
]
export const platformTypeList = [
{ value: 'ALI', label: '支付宝',listClass: listClass.primary},
{ value: 'WX', label: '微信',listClass: listClass.danger},
{ value: 'ADMIN', label: '后台操作',listClass: listClass.info},
]
export const payStatusList = [
{ value: 0, label: '待支付',listClass: listClass.info},
{ value: 1, label: '已支付',listClass: listClass.primary},
{ value: 5, label: '已退款',listClass: listClass.info},
{ value: 10, label: '无需支付',listClass: listClass.info},
]