Files
lingji-work-fe/src/views/property-marketing/media-account/account-dashboard/constants.ts

45 lines
887 B
TypeScript
Raw Normal View History

2025-06-27 18:37:42 +08:00
/*
* @Author: RenXiaoDong
* @Date: 2025-07-04 15:50:37
2025-06-27 18:37:42 +08:00
*/
import icon1 from '@/assets/img/media-account/icon1.png';
import icon2 from '@/assets/img/media-account/icon2.png';
import icon3 from '@/assets/img/media-account/icon3.png';
import icon4 from '@/assets/img/media-account/icon4.png';
export const CARD_FIELDS = [
{
label: '账号总数',
prop: 'total_number',
icon: icon1,
},
{
label: '总粉丝数',
prop: 'total_fans_number',
icon: icon2,
tooltip: '总粉丝数',
},
{
label: '总赞藏数',
prop: 'total_like_number',
icon: icon3,
tooltip: '总赞藏数',
},
{
label: '近7日观看数',
prop: 'seven_view_number',
2025-06-27 18:37:42 +08:00
icon: icon4,
tooltip: '近7日观看数',
},
];
export const INITIAL_QUERY = {
name: '',
status: '',
operator_id: '',
group_ids: [],
type: 7,
column: '',
order: '',
2025-06-27 18:37:42 +08:00
};