展品维保小程序前端代码接口
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.

23 lines
469 B

2 weeks ago
2 weeks ago
  1. // import request from "@/api/request";
  2. import http from "@/api/http";
  3. export default {
  4. // 程序-绑定手机号码
  5. async bindPhone(data) {
  6. return http({
  7. url: '/login/bindPhone',
  8. method: 'GET',
  9. data
  10. })
  11. },
  12. async login(data) {
  13. return http({
  14. url: '/login/login',
  15. method: 'GET',
  16. data,
  17. // header: {
  18. // 'Content-Type': 'application/x-www-form-urlencoded'
  19. // },
  20. showLoading: true
  21. })
  22. }
  23. }