main.js 950 B

1234567891011121314151617181920212223242526272829303132333435
  1. import Vue from 'vue';
  2. import App from './App';
  3. // 弹出框
  4. import pubc from '@/common/public.js'
  5. // 多语言本地化
  6. import VueI18n from 'vue-i18n'
  7. import messages from './locale/index'
  8. let i18nConfig = {
  9. locale: uni.getLocale(),
  10. messages
  11. }
  12. Vue.use(VueI18n)
  13. const i18n = new VueI18n(i18nConfig)
  14. Vue.config.productionTip = false
  15. Vue.prototype.$apiHost = 'http://e.yujianmate.com/Gapi'; //审核包
  16. // Vue.prototype.$apiHost = '/api/Gapi';
  17. // Vue.prototype.$apiHost = 'https://storygarden.cn/Gapi'; //审核包
  18. // Vue.prototype.$apiHost = 'https://duoxiaoduoxue.com/Gapi'; //正式包
  19. // Vue.prototype.$apiHost = 'http://192.168.2.154:11070/Gapi';
  20. // Vue.prototype.now = Date.now || function () {
  21. // return new Date().getTime();
  22. // };
  23. Vue.prototype.isArray = Array.isArray || function(obj) {
  24. return obj instanceof Array;
  25. };
  26. App.mpType = 'app'
  27. const app = new Vue({
  28. i18n,
  29. ...App
  30. })
  31. app.$mount()