1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- import App from './App'
- // import $wxApi from "./wxapi.js";
- // Vue.prototype.$wxApi = $wxApi;
- //微信支付封装
- // import $pay from "./pay.js";
- // Vue.prototype.$pay = $pay
- // #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;
- Vue.prototype.$isDevelop = commonConfig.baseUrl.includes('gztjy');
- 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);
- app.$mount()
- // #endif
- // #ifdef VUE3
- import { createSSRApp } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
- // #endif
|