保存进度!

This commit is contained in:
2023-07-25 19:11:27 +08:00
parent c08b85cbe4
commit 702ab2c4d1
7 changed files with 218 additions and 233 deletions

View File

@@ -12,6 +12,6 @@ interface Department
{
departmentName: string;
departmentCode: string;
};
}
export { type Department };

View File

@@ -13,6 +13,6 @@ interface RankingListItem
index: number;
callerName: string;
appraiseValue: string;
};
}
export { type RankingListItem };

View File

@@ -16,6 +16,6 @@ interface TelSaler
teamName: string;
departmentCode: string;
departmentName: string;
};
}
export { type TelSaler };

View File

@@ -19,7 +19,7 @@ interface RankingListRequest
departmentCode: string;
year: string;
month: string;
};
}
interface RankingListResponse
{
@@ -30,7 +30,7 @@ interface RankingListResponse
month: string;
attachingRateRankingList: RankingListItem[];
renewalRateRankingList: RankingListItem[];
};
}
/**
* 请求坐席排行榜。

View File

@@ -113,7 +113,7 @@ interface ui
showUI: boolean; // 用来刷新页面的开关
attachingRankingList: RankingListItem[]; // 坐席车非渗透率榜单
renewalRankingList: RankingListItem[];
};
}
export default {
name: "DesktopArchievement",