main.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. Vue.config.productionTip = false
  45. //栏目标题设置
  46. const setNavbarTitle = (title,defaultTitle) => {
  47. uni.setNavigationBarTitle({
  48. title:title || defaultTitle
  49. })
  50. }
  51. //统一提示方便全局修改
  52. const msg = (title, duration=1500, mask=false, icon='none')=>{
  53. if(Boolean(title) === false){
  54. return;
  55. }
  56. uni.showToast({
  57. title,
  58. duration,
  59. mask,
  60. icon
  61. });
  62. }
  63. //封装全局登录检查函数:backpage为登录后返回的页面;backtype为打开页面的类型[1 : redirectTo 2 : switchTab]
  64. //3种页面跳转方式:NavigationTo(直接打开新页面),RedirectTo(覆盖原页面后打开新页面),SwitchTo(切换顶部导航的方式来切换页面)
  65. Vue.prototype.checkLogin = function(backpage, backtype){
  66. var TOKEN = uni.getStorageSync('token');//本地持久化存储
  67. var TOKENHEAD = uni.getStorageSync('tokenhead');
  68. var USERINFO = uni.getStorageSync('userInfo');
  69. if(TOKEN == '' || TOKENHEAD == '' || USERINFO == ''){
  70. uni.redirectTo({url:'/pages/login/login?backpage='+backpage+'&backtype='+backtype});
  71. return false;
  72. }
  73. return [TOKEN,TOKENHEAD,USERINFO];//已经登录返回数组TOKEN等用户信息
  74. }
  75. import $wxApi from "./wxapi.js";
  76. Vue.prototype.$wxApi = $wxApi;
  77. //微信支付封装
  78. import $pay from "./pay.js";
  79. Vue.prototype.$pay = $pay
  80. Vue.prototype.$api = {msg,http,setNavbarTitle}
  81. Vue.prototype.$getimg = config.imgUrl
  82. Vue.prototype.$placeImg = config.placeImg
  83. Vue.prototype.$store = store
  84. Vue.prototype.config = config
  85. App.mpType = 'app'
  86. const app = new Vue({
  87. ...App
  88. })
  89. app.$mount()