axios-config.js 1.1 KB

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