|
@@ -3,13 +3,6 @@ import App from './App'
|
|
|
import store from "store";
|
|
|
import uView from "uview-ui";
|
|
|
Vue.use(uView);
|
|
|
-import {
|
|
|
- router,
|
|
|
- RouterMount
|
|
|
-} from 'router'
|
|
|
-Vue.use(router)
|
|
|
-import pages from 'mixins';
|
|
|
-import Mylink from 'uni-simple-router/dist/link.vue'
|
|
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
@@ -44,10 +37,9 @@ Vue.prototype.$callPhone = callPhone;
|
|
|
Vue.prototype.$copy = copy;
|
|
|
|
|
|
// 注入全局
|
|
|
+import pages from 'mixins';
|
|
|
Vue.mixin(pages);
|
|
|
|
|
|
-//组件式导航
|
|
|
-Vue.component('my-link', Mylink)
|
|
|
App.mpType = 'app'
|
|
|
|
|
|
import api from '@/common/http/'
|
|
@@ -63,6 +55,17 @@ import {
|
|
|
} from "@/common/utils/util.js";
|
|
|
Vue.prototype.$getUserInfo = getUserInfo;
|
|
|
|
|
|
+// #ifdef H5
|
|
|
+import {
|
|
|
+ router,
|
|
|
+ RouterMount
|
|
|
+} from 'router'
|
|
|
+Vue.use(router)
|
|
|
+import Mylink from 'uni-simple-router/dist/link.vue'
|
|
|
+// 组件式导航
|
|
|
+Vue.component('my-link', Mylink)
|
|
|
+// #endif
|
|
|
+
|
|
|
// 渲染图片文件
|
|
|
Vue.prototype.$imageUrl = process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/file/img/get?key=';
|
|
|
|
|
@@ -70,6 +73,7 @@ const app = new Vue({
|
|
|
...App,
|
|
|
store
|
|
|
})
|
|
|
+
|
|
|
//v1.3.5起 H5端 你应该去除原有的app.$mount();使用路由自带的渲染方式
|
|
|
// #ifdef H5
|
|
|
RouterMount(app, router, '#app')
|