feat: 投放账户管理

This commit is contained in:
rd
2025-07-02 15:30:13 +08:00
parent 8ef31e82e2
commit f35dd2dfa9
59 changed files with 521 additions and 412 deletions

View File

@ -2,6 +2,10 @@
* @Author: RenXiaoDong
* @Date: 2025-06-25 15:24:59
*/
import icon1 from '@/assets/img/media-account/icon-jl.png';
import icon2 from '@/assets/img/media-account/icon-jg.png';
import icon3 from '@/assets/img/media-account/icon-bili.png';
export const INITIAL_QUERY = {
search: '',
status: '',
@ -11,23 +15,31 @@ export const INITIAL_QUERY = {
export const PLATFORM_LIST = [
{
label: '抖音',
label: '巨量',
value: 0,
icon: icon1,
},
{
label: '小红书',
label: '聚光',
value: 1,
icon: icon2,
},
{
label: 'B站',
value: 2,
icon: icon3,
},
];
export enum EnumStatus {
NORMAL = 1,
PAUSE = 3,
UNAUTHORIZED = 0,
ABNORMAL = 2,
NORMAL = 1,
PAUSE = 2,
ABNORMAL = 3,
ABNORMAL_LOGIN = 4,
ABNORMAL_REQUEST = 5,
ABNORMAL_FREEZE = 6,
ABNORMAL_MISSING = 7,
}
export const STATUS_LIST = [
@ -69,4 +81,9 @@ export const STATUS_LIST = [
value: EnumStatus.ABNORMAL_FREEZE,
tooltip: '账号被冻结/封禁',
},
{
text: '数据缺失',
label: '数据缺失',
value: EnumStatus.ABNORMAL_MISSING,
},
];