feat: 账号管理-授权、添加、分组管理、标签管理

This commit is contained in:
rd
2025-07-03 16:56:10 +08:00
parent 2b4e691f4e
commit 8070350836
22 changed files with 552 additions and 467 deletions

View File

@ -11,6 +11,12 @@ export const INITIAL_QUERY = {
tag_ids: [],
};
export const INITIAL_PAGE_INFO = {
page: 1,
pageSize: 8,
total: 0,
};
export const PLATFORM_LIST = [
{
label: '抖音',
@ -23,10 +29,10 @@ export const PLATFORM_LIST = [
];
export enum EnumStatus {
NORMAL = 1,
PAUSE = 3,
UNAUTHORIZED = 0,
NORMAL = 1,
ABNORMAL = 2,
PAUSE = 3,
ABNORMAL_LOGIN = 4,
ABNORMAL_REQUEST = 5,
ABNORMAL_FREEZE = 6,