axios-config.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * @Description: axois配置文件
  3. * @Author: Napier
  4. * @LastEditors: Napier
  5. * @LastEditorTime: 2021-06-17
  6. */
  7. export default {
  8. install (Vue) {
  9. // 请求前缀
  10. // http
  11. // Vue.prototype.$axios.defaults.baseURL = 'http://139.155.20.56:300'
  12. // https
  13. // Vue.prototype.$axios.defaults.baseURL = 'http://139.155.20.56:300'
  14. Vue.prototype.$axios.defaults.baseURL = 'https://server.itopmap.com'
  15. // 设置超时时间
  16. Vue.prototype.$axios.defaults.timeout = 10000
  17. // 请求封装
  18. Vue.prototype.request = function (url, method, data, success, header) {
  19. this.$axios({
  20. url: url,
  21. method: method,
  22. headers: header || {
  23. 'Accept': 'application/json'
  24. },
  25. data: method === 'post' ? JSON.stringify(data) : {},
  26. params: method === 'get' ? data : {}
  27. })
  28. .then(res => {
  29. if (success) {
  30. success(res.data)
  31. }
  32. })
  33. .catch(res => {
  34. console.log(res)
  35. })
  36. }
  37. }
  38. }