main.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. import Vue from 'vue'
  2. import App from './App'
  3. import uView from '@/uni_modules/uview-ui'
  4. Vue.use(uView)
  5. import store from './store'
  6. Vue.prototype.$store = store
  7. import custom from '@/components/custom.vue';
  8. import loadingText from '@/components/loadingText.vue';
  9. import noData from '@/components/noData.vue';
  10. Vue.component('custom', custom);
  11. Vue.component('loading-text', loadingText);
  12. Vue.component('no-data', noData);
  13. import {axios} from '@/api/axios.js';
  14. Vue.prototype.$axios = axios;
  15. import * as filters from './filters/index.js' // global filters
  16. // register global utility filters
  17. Object.keys(filters).forEach(key => {
  18. Vue.filter(key, filters[key])
  19. })
  20. import {toast, successToast, modal, navPage, redPage, backPage} from '@/utils/common.js'
  21. Vue.prototype.$toast = toast;
  22. Vue.prototype.$successToast = successToast;
  23. Vue.prototype.$modal = modal;
  24. Vue.prototype.$navPage = navPage;
  25. Vue.prototype.$redPage = redPage;
  26. Vue.prototype.$backPage = backPage;
  27. import {compareTime} from '@/utils/utils.js'
  28. Vue.prototype.$compareTime = compareTime;
  29. import { getUserInfo } from '@/api/index.js';
  30. Vue.prototype.$getUserInfo = getUserInfo;
  31. // 渲染图片文件
  32. import { base_url } from '@/utils/config.js';
  33. Vue.prototype.$imageUrl = base_url + '/common/img/get?key=';
  34. Vue.prototype.$onLaunched = new Promise(resolve => {
  35. Vue.prototype.$isResolve = resolve
  36. })
  37. Vue.prototype.$auth = (url)=>{
  38. if(store.state.isLogin){
  39. uni.navigateTo({
  40. url,
  41. fail:err=>{
  42. console.log('auth跳转失败',url,err)
  43. }
  44. })
  45. }else{
  46. uni.navigateTo({
  47. url:'/pages/login/index'
  48. })
  49. }
  50. }
  51. Vue.config.productionTip = false
  52. App.mpType = 'app'
  53. const app = new Vue({
  54. ...App
  55. })
  56. app.$mount()