()
| 477 | } |
| 478 | |
| 479 | async getPageInfo() { |
| 480 | const result = await this.taskPost("/openapi/task/v1/signature/page-info", { activity_no: this.activityNo }); |
| 481 | if (!ok(result?.code)) throw new Error(result?.message || result?.msg || JSON.stringify(result)); |
| 482 | return result.data || {}; |
| 483 | } |
| 484 | |
| 485 | todaySigned(pageInfo) { |
| 486 | const today = Array.isArray(pageInfo?.seven_days_signs) ? pageInfo.seven_days_signs[0] : {}; |