19 lines
545 B
JavaScript
19 lines
545 B
JavaScript
export const levelTrackOptions = [
|
|
["wealth", "财富等级"],
|
|
["game", "游戏等级"],
|
|
["charm", "魅力等级"],
|
|
];
|
|
|
|
export const levelTrackLabels = Object.fromEntries(levelTrackOptions);
|
|
|
|
export const levelStatusOptions = [
|
|
["active", "启用"],
|
|
["disabled", "禁用"],
|
|
];
|
|
|
|
export const levelStatusLabels = Object.fromEntries(levelStatusOptions);
|
|
|
|
export const levelTrackFilterOptions = [["", "全部等级"], ...levelTrackOptions];
|
|
|
|
export const levelStatusFilterOptions = [["", "全部状态"], ...levelStatusOptions];
|