3 Commitit 6c330f4a9a ... 164e5e3f88

Tekijä SHA1 Viesti Päivämäärä
  nanshan 164e5e3f88 publishers 2 vuotta sitten
  nanshan 943cbfd661 try again 2 vuotta sitten
  nanshan d58d5c462b try again 2 vuotta sitten

+ 3 - 0
.env.development

@@ -4,6 +4,9 @@ VUE_APP_TITLE = 若依管理系统
 # 开发环境配置
 ENV = 'development'
 
+#若依管理系统/开发环境
+VUE APP_BASE API = http://39.105.160.25:10997
+
 # 若依管理系统/开发环境
 VUE_APP_BASE_API = '/dev-api'
 

+ 22 - 1
src/router/index.js

@@ -142,7 +142,28 @@ export const constantRoutes = [
       }
       // messageDetails
     ]
-  },
+  } ,
+  {
+    path: '/publisherList',
+    component: Layout,
+    // redirect: '开发商管理',
+    meta: { title: '开发商管理', icon : "user" },
+    children: [
+      {
+        path: 'messageList',
+        component: () => import('@/views/publishers/publisherList'),
+        name: 'publisherList',
+        meta: { title: '开发商列表', icon: 'list' }
+      },
+      {
+        path: 'addPublisher',
+        component: () => import('@/views/publishers/addPublisher'),
+        name: 'addPublisher',
+        meta: { title: '创建开发商', icon: 'build' }
+      },
+    ]
+  } ,
+ 
   {
     path: '/Sets',
     component: Layout,

+ 5 - 0
src/views/publishers/addPublisher.vue

@@ -0,0 +1,5 @@
+<template>
+    <div>
+     添加开发商yemian
+    </div>
+ </template>

+ 5 - 0
src/views/publishers/publisherList.vue

@@ -0,0 +1,5 @@
+<template>
+   <div>
+    开发商列表
+   </div>
+</template>