feat(account-manage): 新增账号管理页面布局和功能

This commit is contained in:
rd
2025-09-19 15:20:17 +08:00
parent 7af09d77e1
commit d8f2173eef
5 changed files with 138 additions and 87 deletions

View File

@ -28,3 +28,16 @@ export const PLATFORM_LIST = [
value: 1,
},
];
export const SHOW_TYPES = [
{
label: '卡片',
value: 'card',
svgName: 'svg-card',
},
{
label: '列表',
value: 'list',
svgName: 'svg-list',
},
];