123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- import App from './App'
- // #ifndef VUE3
- import Vue from 'vue'
- Vue.config.productionTip = false
- App.mpType = 'app'
- try {
- function isPromise(obj) {
- return (
- !!obj &&
- (typeof obj === "object" || typeof obj === "function") &&
- typeof obj.then === "function"
- );
- }
- // 统一 vue2 API Promise 化返回格式与 vue3 保持一致
- uni.addInterceptor({
- returnValue(res) {
- if (!isPromise(res)) {
- return res;
- }
- return new Promise((resolve, reject) => {
- res.then((res) => {
- if (res[0]) {
- reject(res[0]);
- } else {
- resolve(res[1]);
- }
- });
- });
- },
- });
- } catch (error) { }
- import uView from '@/uni_modules/uview-ui'
- Vue.use(uView)
- import { commonConfig } from './common/config';
- Vue.prototype.$commonConfig = commonConfig;
- import './utils/filter'
- import store from '@/store';
- // 引入uView提供的对vuex的简写法文件
- let vuexStore = require('@/store/$u.mixin.js');
- Vue.mixin(vuexStore);
- const app = new Vue({
- ...App,
- store
- })
- //uviewui v1
- // // http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
- // import httpInterceptor from '@/common/http.interceptor.js';
- // Vue.use(httpInterceptor, app);
- // 引入请求封装,将app参数传递到配置中
- require('./common/request.js')(app)
- // http接口API抽离,免于写url或者一些固定的参数
- import httpApi from '@/common/http.api.js';
- Vue.use(httpApi, app);
- // 解决uni.previewImage图片模糊问题
- import previewImage from '@/mixin/previewImage.js'
- Vue.mixin(previewImage);
- app.$mount()
- // #endif
- // #ifdef VUE3
- import { createSSRApp } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
- // #endif
|