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.
28 lines
455 B
28 lines
455 B
1 year ago
|
import Enum from '../enum'
|
||
|
|
||
|
/**
|
||
|
* 枚举类:设置项索引
|
||
|
* SettingKeyEnum
|
||
|
*/
|
||
|
export default new Enum([{
|
||
|
key: 'REGISTER',
|
||
|
name: '账户注册设置',
|
||
|
value: 'register'
|
||
|
},
|
||
|
{
|
||
|
key: 'PAGE_CATEGORY_TEMPLATE',
|
||
|
name: '分类页模板',
|
||
|
value: 'page_category_template'
|
||
|
},
|
||
|
{
|
||
|
key: 'POINTS',
|
||
|
name: '积分设置',
|
||
|
value: 'points'
|
||
|
},
|
||
|
{
|
||
|
key: 'RECHARGE',
|
||
|
name: '充值设置',
|
||
|
value: 'recharge'
|
||
|
}
|
||
|
])
|