This commit is contained in:
张良(004796)
2024-02-02 19:03:41 +08:00
parent 7f818e2f50
commit feeb1557a2
5 changed files with 414 additions and 2 deletions

View File

@@ -86,6 +86,11 @@ export const isAnchorList = [
{ value: 0, label: '否',listClass: listClass.info},
]
export const enableStatusList = [
{ value: 1, label: '正常'},
{ value: 0, label: '禁用'},
]
export const booleanList = [
{ value: true, label: '是',listClass: listClass.danger},
{ value: false, label: '否',listClass: listClass.info},
@@ -297,3 +302,7 @@ export const systemPushTypeList = [
{ value: 3, label: '多图文消息',listClass: listClass.warning},
{ value: 4, label: '纯图文消息',listClass: listClass.warning},
]
export const versionPlatformList = [
{ value: 1, label: '安卓'},
{ value: 2, label: 'IOS'},
]