()
| 220 | } |
| 221 | |
| 222 | async getSignInfo() { |
| 223 | if (!this.campaignId) await this.getCampaignId(true); |
| 224 | const result = await this.request("GET", "estore-campaign/campaign/pointsMall/assignment/sign", { |
| 225 | campaignId: this.campaignId, |
| 226 | }); |
| 227 | return result.data || {}; |
| 228 | } |
| 229 | |
| 230 | async doSign() { |
| 231 | try { |
no test coverage detected