zhao_js
2023-11-15 b44e169dd8a6e0f15d3788970176922e96aec6e1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import Vue from 'vue';
import App from './App';
import aLoadMore from "./components/a_loadMore.vue";
import request from './utils/http.js'
Vue.prototype.$http = request
 
Vue.component('aLoadMore',aLoadMore)
 
Vue.config.productionTip = false;
 
App.mpType = 'app';
// 引入全局uView
import uView from 'uview-ui';
Vue.use(uView);
 
// 此处为演示vuex使用,非uView的功能部分
import store from '@/store';
 
// 引入uView提供的对vuex的简写法文件
let vuexStore = require('@/store/$u.mixin.js');
Vue.mixin(vuexStore);
 
// 引入uView对小程序分享的mixin封装
let mpShare = require('uview-ui/libs/mixin/mpShare.js');
Vue.mixin(mpShare);
 
 
Vue.prototype.$alert = function(msg,icon){
    uni.showToast({
        title:msg,
        icon:!icon ? 'none' : icon
    })
}
 
const app = new Vue({
    store,
    ...App
});
 
// http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
import httpInterceptor from '@/utils/http.interceptor.js';
Vue.use(httpInterceptor, app);
 
// http接口API抽离,免于写url或者一些固定的参数
import httpApi from '@/utils/http.api.js';
Vue.use(httpApi, app);
 
app.$mount();