user.js 272 B

12345678910
  1. import APIConfig from "./api.js";
  2. import efunRequest from "../utils/efunRequest";
  3. import request from "../utils/request";
  4. export default class user {
  5. static update_UserInfo(opts) {
  6. console.log('opts',opts);
  7. return request(APIConfig.getUserUrl(``), opts);
  8. }
  9. }