feat: 新媒体账号管理

This commit is contained in:
rd
2025-06-25 18:26:03 +08:00
parent 62190c346c
commit f645c3e1c0
43 changed files with 1537 additions and 23 deletions

View File

@ -0,0 +1,38 @@
/*
* @Author: RenXiaoDong
* @Date: 2025-06-25 15:24:59
*/
export const INITIAL_QUERY = {
search: '',
status: '',
platform: '',
operator_id: '',
group_ids: [],
tag_ids: [],
};
export const PLATFORM_LIST = [
{
label: '抖音',
value: 0,
},
{
label: '小红书',
value: 1,
},
];
export const STATUS_LIST = [
{
label: '未授权',
value: 0,
},
{
label: '正常',
value: 1,
},
{
label: '异常',
value: 2,
},
];