拓恒飞手平台小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
210B

  1. const {request} = require("../request/index")
  2. // 获取用户信息
  3. export const userLogin = function (data) {
  4. return request({
  5. url: '/member/userInfo',
  6. method: 'POST',
  7. data
  8. })
  9. }