user.js 303 B

12345678910111213141516171819202122232425
  1. import {
  2. myRequestPhp
  3. } from './requestPhp.js'
  4. const pre = ""
  5. const apiType = "php"
  6. /**
  7. *
  8. * @returns 获取用户信息
  9. */
  10. export function getBaseInfo() {
  11. return myRequestPhp({
  12. url: `${pre}mer/info`,
  13. method: 'GET',
  14. data,
  15. apiType
  16. })
  17. }