| 12345678910111213141516171819202122232425 |
- import {
- myRequestPhp
- } from './requestPhp.js'
- const pre = ""
- const apiType = "php"
- /**
- *
- * @returns 获取用户信息
- */
- export function getBaseInfo() {
- return myRequestPhp({
- url: `${pre}mer/info`,
- method: 'GET',
- data,
- apiType
- })
- }
|