main.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import App from './App';
  2. // Api函数polyfill(目前为实验版本,如不需要,可删除!)';
  3. import Polyfill from './polyfill/polyfill';
  4. // import customTabBar from './custom-tab-bar/index.vue';
  5. Polyfill.init();
  6. // 全局mixins,用于实现setData等功能,请勿删除!';
  7. import Mixin from './polyfill/mixins';
  8. import i18n from './locale/index'
  9. import uView from "uview-ui";
  10. import gyq_utils from '@/utils/gyq_utils'
  11. Vue.use(gyq_utils)
  12. uni.addInterceptor('request', {
  13. fail: (err) => {
  14. uni.hideLoading()
  15. return false; // 阻止默认弹窗
  16. }
  17. });
  18. // #ifndef VUE3
  19. import Vue from 'vue';
  20. Vue.mixin(Mixin);
  21. Vue.config.productionTip = false;
  22. App.mpType = 'app';
  23. const app = new Vue({
  24. i18n,
  25. ...App
  26. });
  27. app.$mount();
  28. // #endif
  29. // // #ifdef VUE3
  30. // import { createSSRApp } from 'vue';
  31. // import {
  32. // createI18n
  33. // } from 'vue-i18n'
  34. // const i18n = createI18n(i18nConfig)
  35. // export function createApp() {
  36. // const app = createSSRApp(App);
  37. // app.use(i18n)
  38. // app.mixin(Mixin);
  39. // return {
  40. // app
  41. // };
  42. // }
  43. // // #endif