wangrui 2 anni fa
parent
commit
1965793933

+ 19 - 0
src/router/index.js

@@ -168,6 +168,25 @@ export const constantRoutes = [
         meta: { title: '创建套系', icon: 'collectionadd' }
       }
     ]
+  },
+  {
+    path: '/publisherList',
+    component: Layout,
+    meta: { title: '发行方管理', icon : "user" },
+    children: [
+      {
+        path: 'publisherList',
+        component: () => import('@/views/publisher/publisherList'),
+        name: 'publisherList',
+        meta: { title: '发行方列表', icon: 'list' }
+      },
+      {
+        path: 'addPublisher',
+        component: () => import('@/views/publisher/addPublisher'),
+        name: 'addPublisher',
+        meta: { title: '创建发行方', icon: 'build' }
+      }
+    ]
   }
   
 ]

+ 0 - 1
src/views/notice/addNotice.vue

@@ -98,7 +98,6 @@ export default {
             submitNotice({
               newsTitle:this.notice.noticeTitle,
               newsContent:this.notice.content,
-              userPhone :this.notice.receivedUsers,
               createTime:'1994-12-01 12:22:33',
               updateTime:'1994-12-01 12:22:33',
             })

+ 3 - 0
src/views/publisher/addPublisher.vue

@@ -0,0 +1,3 @@
+<template>
+    <h1>新建发行方</h1>
+</template>

+ 3 - 0
src/views/publisher/publisherList.vue

@@ -0,0 +1,3 @@
+<template>
+    <h1>发行方管理</h1>
+</template>