officialAuthentication.js 387 B

12345678910111213141516171819
  1. import request from '@/utils/request'
  2. // 提交官方认证
  3. export function appletAdd(query) {
  4. return request({
  5. url: '/officialAuthentication/appletAdd',
  6. method: 'post',
  7. data: query
  8. })
  9. }
  10. //按用户id查询实名认证信息
  11. export function getUserInfo(userId) {
  12. return request({
  13. url: '/officialAuthentication/getOfficialInfo/'+ userId,
  14. method: 'get',
  15. })
  16. }