main.js 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. import App from './App'
  2. // #ifndef VUE3
  3. import Vue from 'vue'
  4. Vue.config.productionTip = false
  5. App.mpType = 'app'
  6. try {
  7. function isPromise(obj) {
  8. return (
  9. !!obj &&
  10. (typeof obj === "object" || typeof obj === "function") &&
  11. typeof obj.then === "function"
  12. );
  13. }
  14. // 统一 vue2 API Promise 化返回格式与 vue3 保持一致
  15. uni.addInterceptor({
  16. returnValue(res) {
  17. if (!isPromise(res)) {
  18. return res;
  19. }
  20. return new Promise((resolve, reject) => {
  21. res.then((res) => {
  22. if (res[0]) {
  23. reject(res[0]);
  24. } else {
  25. resolve(res[1]);
  26. }
  27. });
  28. });
  29. },
  30. });
  31. } catch (error) { }
  32. import uView from '@/uni_modules/uview-ui'
  33. Vue.use(uView)
  34. import { commonConfig } from './common/config';
  35. Vue.prototype.$commonConfig = commonConfig;
  36. import './utils/filter'
  37. import store from '@/store';
  38. // 引入uView提供的对vuex的简写法文件
  39. let vuexStore = require('@/store/$u.mixin.js');
  40. Vue.mixin(vuexStore);
  41. const app = new Vue({
  42. ...App,
  43. store
  44. })
  45. //uviewui v1
  46. // // http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
  47. // import httpInterceptor from '@/common/http.interceptor.js';
  48. // Vue.use(httpInterceptor, app);
  49. // 引入请求封装,将app参数传递到配置中
  50. require('./common/request.js')(app)
  51. // http接口API抽离,免于写url或者一些固定的参数
  52. import httpApi from '@/common/http.api.js';
  53. Vue.use(httpApi, app);
  54. app.$mount()
  55. // #endif
  56. // #ifdef VUE3
  57. import { createSSRApp } from 'vue'
  58. export function createApp() {
  59. const app = createSSRApp(App)
  60. return {
  61. app
  62. }
  63. }
  64. // #endif