()
| 189 | } |
| 190 | |
| 191 | async getUser() { |
| 192 | const data = await this.request({ apiPath: "/app-api/member/user/get" }); |
| 193 | this.user = data || {}; |
| 194 | this.saveCachedToken(); |
| 195 | $.log(`账号[${this.index}] 用户: ${data?.nickname || ""} ${maskPhone(data?.mobile) || ""} 积分=${data?.score ?? "未知"}`); |
| 196 | return data; |
| 197 | } |
| 198 | |
| 199 | async getSignList() { |
| 200 | try { |
no test coverage detected