index.js 250 B

12345678910111213141516
  1. import {
  2. Http
  3. } from '../utils/newHttp.js';
  4. export class Index extends Http {
  5. constructor() {
  6. super();
  7. }
  8. getUserInfoByQRCode(data) {
  9. return this.request({
  10. url: '/v1/proof/mini/user/info/query',
  11. method: 'POST',
  12. data: data
  13. });
  14. }
  15. }