main.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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 == 1) { // 服务端返回的状态码不等于200,则reject()
  9. uni.showToast({
  10. icon:'none',
  11. mask:false,
  12. title:`${response.data.msg}`,
  13. duration: 2000
  14. });
  15. return Promise.reject(response)
  16. };
  17. // console.log('response',response);
  18. if(response.data.code == 401){
  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/loginType',
  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.$onlineImg = config.onlineImg;
  75. Vue.prototype.$placeImg = config.placeImg;
  76. Vue.prototype.$qnyImg = config.qnyImg;
  77. Vue.prototype.$store = store;
  78. Vue.prototype.config = config;
  79. App.mpType = 'app'
  80. const app = new Vue({
  81. ...App
  82. })
  83. app.$mount()