12345678910111213141516 |
- import {
- Http
- } from '../utils/newHttp.js';
- export class Index extends Http {
- constructor() {
- super();
- }
- getUserInfoByQRCode(data) {
- return this.request({
- url: '/v1/proof/mini/user/info/query',
- method: 'POST',
- data: data
- });
- }
- }
|