提交 96adea71 编写于 作者: guangjun.yang's avatar guangjun.yang

protocol-list

上级 79492c8b
import App from '../App' import App from '../App'
const home = r => require.ensure([], () => r(require('../views/home')), 'home')
const blank = r => require.ensure([], () => r(require('../views/blank')), 'blank') const blank = r => require.ensure([], () => r(require('../views/blank')), 'blank')
const itemManager = r => require.ensure([], () => r(require('../views/education/item-manager.vue')), 'item-manager')
const itemComponent = r => require.ensure([], () => r(require('../views/education/item-component.vue')), 'item-component')
const createComponent = r => require.ensure([], () => r(require('../views/education/create-component.vue')),'create-component')
const roleManager = r => require.ensure([], () => r(require('../views/system/role.vue')),'role')
const addManager = r => require.ensure([], () => r(require('../views/education/add-manager.vue')), 'add-manager')
const itemRole = r => require.ensure([], () => r(require('../views/system/item-role.vue')), 'item-role')
const createPush = r => require.ensure([], () => r(require('../views/message/create-push.vue')), 'create-push')
const historyPush = r => require.ensure([], () => r(require('../views/message/history-push.vue')), 'history-push')
// 新增 策略管理、短信历史、黑名单、疲劳度控制
const strategyManage = r => require.ensure([], () => r(require('../views/message/strategy-manage.vue')), 'strategy-manage');
const msgHistory = r => require.ensure([], () => r(require('../views/message/msg-history.vue')), 'msg-history');
const blacklist = r => require.ensure([], () => r(require('../views/message/blacklist.vue')), 'blacklist');
const fatigueControl = r => require.ensure([], () => r(require('../views/message/fatigue-control.vue')), 'fatigue-control');
// 新增 协议管理 // 新增 协议管理
const protocolList = r => require.ensure([], () => r(require('../views/protocol/protocol-list.vue')), 'protocol-list'); const protocolList = r => require.ensure([], () => r(require('../views/protocol/protocol-list.vue')), 'protocol-list');
...@@ -40,43 +24,45 @@ export default [{ ...@@ -40,43 +24,45 @@ export default [{
},{ },{
path: '/blank', path: '/blank',
component: blank component: blank
},{ },
path: '/item-manager', // {
component: itemManager // path: '/item-manager',
},{ // component: itemManager
path: '/add-manager', // },{
component: addManager // path: '/add-manager',
},{ // component: addManager
path: '/item-component', // },{
component: itemComponent // path: '/item-component',
},{ // component: itemComponent
path: '/role', // },{
component: roleManager // path: '/role',
},{ // component: roleManager
path: '/create-component', // },{
component: createComponent // path: '/create-component',
},{ // component: createComponent
path: '/item-role', // },{
component: itemRole // path: '/item-role',
},{ // component: itemRole
path: '/create-push', // },{
component: createPush // path: '/create-push',
},{ // component: createPush
path: '/history-push', // },{
component: historyPush // path: '/history-push',
},{ // component: historyPush
path: '/strategy-manage', // },{
component: strategyManage // path: '/strategy-manage',
},{ // component: strategyManage
path: '/msg-history', // },{
component: msgHistory // path: '/msg-history',
},{ // component: msgHistory
path: '/blacklist', // },{
component: blacklist // path: '/blacklist',
},{ // component: blacklist
path: '/fatigue-control', // },{
component: fatigueControl // path: '/fatigue-control',
},{ // component: fatigueControl
// },
{
path: '/protocol-list', path: '/protocol-list',
component: protocolList component: protocolList
},{ },{
......
因为 它太大了无法显示 源差异 。您可以改为 查看blob
此差异已折叠。
此差异已折叠。
此差异已折叠。
...@@ -63,21 +63,21 @@ export default { ...@@ -63,21 +63,21 @@ export default {
icon: "el-icon-history-push", icon: "el-icon-history-push",
index: "protocol-list" index: "protocol-list"
}, },
{ // {
title: "创建协议", // title: "创建协议",
icon: "el-icon-document-add", // icon: "el-icon-document-add",
index: "create-protocol" // index: "create-protocol"
}, // },
{ // {
title: "查看协议", // title: "查看协议",
icon: "el-icon-chat-line-square", // icon: "el-icon-chat-line-square",
index: "protocol-detail" // index: "protocol-detail"
}, // },
{ // {
title: "历史版本", // title: "历史版本",
icon: "el-icon-chat-line-square", // icon: "el-icon-chat-line-square",
index: "protocol-history" // index: "protocol-history"
} // }
] ]
}; };
}, },
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册