main.js 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. import Vue from 'vue'
  2. import App from './App'
  3. // import { config } from './config/config'
  4. import store from './store'
  5. import Request from '@/js_sdk/luch-request/luch-request/index.js';
  6. const http = new Request();
  7. http.interceptors.response.use((response) => { /* 对响应成功做点什么 可使用async await 做异步操作*/
  8. if (response.data.code !== 200) { // 服务端返回的状态码不等于200,则reject()
  9. uni.showToast({
  10. icon:'none',
  11. mask:false,
  12. title:`${response.data.message}`,
  13. duration: 2000
  14. });
  15. };
  16. if(response.data.code == 401){
  17. // console.log('response',response);
  18. uni.showToast({
  19. title:response.data.message + " 即将跳转到登录页",
  20. icon:"none",
  21. duration:2000
  22. });
  23. setTimeout(i=>{
  24. uni.navigateTo({
  25. url: '/pages/login/login',
  26. fail:function(err){
  27. console.log(err)
  28. }
  29. });
  30. },2000);
  31. return Promise.reject(response)
  32. };
  33. // return Promise.reject(response) // return Promise.reject 可使promise状态进入catch
  34. if (response.config.custom.verification) { // 演示自定义参数的作用
  35. return response.data
  36. }
  37. // console.log(response)
  38. return response
  39. }, (response) => { /* 对响应错误做点什么 (statusCode !== 200)*/
  40. console.log(response);
  41. return Promise.reject(response)
  42. });
  43. // import './utils/filter'
  44. //统一提示方便全局修改
  45. const msg = (title, duration=1500, mask=false, icon='none')=>{
  46. if(Boolean(title) === false){
  47. return;
  48. }
  49. uni.showToast({
  50. title,
  51. duration,
  52. mask,
  53. icon
  54. });
  55. }
  56. // import $wxApi from "./wxapi.js";
  57. // Vue.prototype.$wxApi = $wxApi;
  58. // //微信支付封装
  59. // import $pay from "./pay.js";
  60. // Vue.prototype.$pay = $pay
  61. Vue.config.productionTip = false
  62. Vue.prototype.$api = {msg,http}
  63. // Vue.prototype.$getimg = config.imgUrl
  64. // Vue.prototype.$placeImg = config.placeImg
  65. Vue.prototype.$store = store
  66. // Vue.prototype.config = config
  67. App.mpType = 'app'
  68. const app = new Vue({
  69. ...App
  70. })
  71. app.$mount()