main.js 2.2 KB

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