12345678910111213141516171819 |
- import request from '@/utils/request'
- // 提交官方认证
- export function appletAdd(query) {
- return request({
- url: '/officialAuthentication/appletAdd',
- method: 'post',
- data: query
- })
- }
- //按用户id查询实名认证信息
- export function getUserInfo(userId) {
- return request({
- url: '/officialAuthentication/getOfficialInfo/'+ userId,
- method: 'get',
- })
- }
|