فهرست منبع

feat: 修改跳转

linwenxin 1 سال پیش
والد
کامیت
398272119b
3فایلهای تغییر یافته به همراه21 افزوده شده و 18 حذف شده
  1. 13 9
      src/main.js
  2. 7 8
      src/pages.json
  3. 1 1
      vue.config.js

+ 13 - 9
src/main.js

@@ -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')

+ 7 - 8
src/pages.json

@@ -8,13 +8,6 @@
     //     "navigationBarTitleText": ""
     //   }
     // },
-    // {
-    //   "path": "pages/login/indexs",
-    //   "style": {
-    //     "navigationBarTitleText": "登录",
-    //     "navigationStyle": "custom"
-    //   }
-    // },
     {
       "path": "pages/index/index",
       "style": {
@@ -125,8 +118,14 @@
       "style": {
         "navigationBarTitleText": "确认订单"
       }
+    },
+    {
+      "path": "pages/login/indexs",
+      "style": {
+        "navigationBarTitleText": "登录",
+        "navigationStyle": "custom"
+      }
     }
-
   ],
   "preloadRule": {
     //分包预载配置

+ 1 - 1
vue.config.js

@@ -50,7 +50,7 @@ fs.writeFileSync(manifestPath, Manifest, {
 
 module.exports = {
     publicPath: process.env.VUE_APP_BASE_PATH,
-    transpileDependencies: ['uview-ui'],
+    transpileDependencies: ['uview-ui','uni-simple-router'],
     configureWebpack: {
         plugins: [
 			new webpack.DefinePlugin({