16 lines
620 B
TypeScript
16 lines
620 B
TypeScript
export type LeaderboardEntry = {
|
|
rank: number;
|
|
name: string;
|
|
role: string;
|
|
totalStores: number;
|
|
monthStores: number;
|
|
};
|
|
|
|
/** preV1:贡献榜 Mock,待 `/partner/dashboard/leaderboard` 接入后替换 */
|
|
export const LEADERBOARD_MOCK: LeaderboardEntry[] = [
|
|
{ rank: 1, name: '陈经理', role: '内部员工', totalStores: 45, monthStores: 8 },
|
|
{ rank: 2, name: '李华', role: '城市合伙人', totalStores: 32, monthStores: 5 },
|
|
{ rank: 3, name: '王拓', role: '推广员', totalStores: 18, monthStores: 3 },
|
|
{ rank: 4, name: '赵敏', role: '内部员工', totalStores: 12, monthStores: 2 },
|
|
];
|