ck管理添加异步状态获取

This commit is contained in:
whyour
2021-04-16 13:07:57 +08:00
parent 5f25fcc49f
commit 6b7a64845e
2 changed files with 22 additions and 1 deletions
+2 -1
View File
@@ -81,10 +81,11 @@ export default class CookieService {
public async refreshCookie(_id: string) {
const current = await this.get(_id);
const { status } = await this.getJdInfo(current.value);
const { status, nickname } = await this.getJdInfo(current.value);
return {
...current,
status,
nickname,
};
}