feat: 新媒体账号管理
This commit is contained in:
@ -0,0 +1,36 @@
|
||||
/*
|
||||
* @Author: RenXiaoDong
|
||||
* @Date: 2025-06-25 15:24:59
|
||||
*/
|
||||
export const INITIAL_QUERY = {
|
||||
search: '',
|
||||
status: '',
|
||||
platform: '',
|
||||
operator_id: '',
|
||||
};
|
||||
|
||||
export const PLATFORM_LIST = [
|
||||
{
|
||||
label: '抖音',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: '小红书',
|
||||
value: 1,
|
||||
},
|
||||
];
|
||||
|
||||
export const STATUS_LIST = [
|
||||
{
|
||||
label: '未授权',
|
||||
value: 0,
|
||||
},
|
||||
{
|
||||
label: '正常',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
label: '异常',
|
||||
value: 2,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user