wangzhibo
6 天以前 3f249e399659dcd09d3fe58071b146e50e45c17f
src/modules/user/controller/app/info.ts
@@ -62,4 +62,15 @@
      )
    );
  }
   @Post('/dashboard', { summary: '获取用户碳积分信息' })
  async dashboard(@Body() body) {
    console.log(body)
    const {unionid} = body;
    return this.ok(
      await this.userInfoService.dashboard(
        unionid
      )
    );
  }
}