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. // Vue.prototype.$axios.defaults.baseURL = 'http://127.0.0.1:300'
  11. // Vue.prototype.$axios.defaults.baseURL = 'http://42.193.189.65:300'
  12. // test
  13. Vue.prototype.$axios.defaults.baseURL = 'http://203.189.213.228:300'
  14. // 设置超时时间
  15. Vue.prototype.$axios.defaults.timeout = 10000
  16. // 请求封装
  17. Vue.prototype.request = function (url, method, data, success, header) {
  18. this.$axios({
  19. url: url,
  20. method: method,
  21. headers: header || {
  22. 'Accept': 'application/json'
  23. // 'Content-Type':'multipart/form-data'
  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. }