Skip to content

Commit

Permalink
Update gqcq.js
Browse files Browse the repository at this point in the history
  • Loading branch information
smallfawn committed Mar 19, 2023
1 parent ab9ce17 commit df7d0cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gqcq.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class UserInfo {
// console.log(result)
if (result.errorCode == 20000) {
this.box = result.data
console.log(`账号[${this.index}], 共有宝箱:${this.box.length}个!`)
DoubleLog(`账号[${this.index}], 共有宝箱:${this.box.length}个!`)

if (this.box.length > 0) {
for (let i = 0; i < this.box.length; i++) {
Expand All @@ -193,7 +193,7 @@ class UserInfo {
let result = await httpRequest(options)
// console.(result)
if (result.errorCode == 20000) {
console.log(`账号[${this.index}], 开宝箱:${result.errorMessage} ,恭喜你获得 ${result.data.medalName} 奖品为 ${result.data.medalDescription}`)
DoubleLog(`账号[${this.index}], 开宝箱:${result.errorMessage} ,恭喜你获得 ${result.data.medalName} 奖品为 ${result.data.medalDescription}`)
} else {

}
Expand Down Expand Up @@ -277,7 +277,7 @@ class UserInfo {
headers: this.headersTwo,
body: "activityCode=shop-draw"
}
console.log(options);
//console.log(options);
let result = await httpRequest(options);
//console.log(result);
if (result.errorCode == 20000) {
Expand Down

0 comments on commit df7d0cf

Please sign in to comment.