Commit 45e1f2da authored by xiexingan's avatar xiexingan

提交

parent fbe8f48c
...@@ -5,9 +5,9 @@ CONFIG.TITLE = '轨道交通后台管理系统' ...@@ -5,9 +5,9 @@ CONFIG.TITLE = '轨道交通后台管理系统'
// 网络请求公用地址 // 网络请求公用地址
CONFIG.requestPath = 'http://localhost:8046' // CONFIG.requestPath = 'http://localhost:8046'
// CONFIG.requestPath = 'http://10.20.72.33:8046' CONFIG.requestPath = 'http://10.20.72.31:8046'
// 文件上传 // 文件上传
CONFIG.urlPath = 'http://10.20.72.33/' CONFIG.urlPath = 'http://10.20.72.33/'
......
// 插件
import demoPlugins from './modules/demo-plugins'
// 组件
import demoComponents from './modules/demo-components'
// 组件
import demoCharts from './modules/demo-charts'
// 组件库
import demoElement from './modules/demo-element'
// 功能
// import demoPlayground from './modules/demo-playground'
// 示例
// import demoBusiness from './modules/demo-business'
// 角色与权限
import sysUser from './modules/sys-user'
// 系统设置
import sysSetting from './modules/sys-setting'
// 系统管理
import sysManage from './modules/sys-manage'
// 运营管理
import oprManage from './modules/opr-manage'
// 财务管理
import fnManage from './modules/fn-manage'
// 退款管理
import refundManage from './modules/fn-refundManage'
// 会员管理
import mbManage from './modules/mb-manage'
// 竞赛管理
import ctManage from './modules/ct-manage'
// CRUD
import demoD2Crud from './modules/demo-d2-crud'
// 第三方网页
import demoFrame from './modules/demo-frame'
// 菜单 侧边栏
export const menuAside = [
demoComponents,
demoPlugins,
demoCharts,
demoElement,
// demoPlayground,// 功能
// demoBusiness,// 事例
demoD2Crud,
demoFrame,
mbManage, // 会员管理
ctManage, //竞赛管理
fnManage, //财务管理
refundManage, //退款管理
oprManage, //运营管理
sysManage, // 系统管理
// sysUser,
sysSetting
]
// 菜单 顶栏
//export const menuHeader = sessionStorage.getItem('menuList')
export const menuHeader = [
{ title: '首页', path: '/index' },
{ title: '竞赛管理', path: '/ct/competition/level' },
{ title: '会员管理', path: '/mb/member' },
{ title: '运营管理', path: '/operation/place' },
{ title: '财务管理', path: '/finance/competitionOrder/classification' },
{ title: '系统管理', path: '/sys/org' }
// { path: '/sys/setting/code', title: '代码生成', icon: 'globe' }
]
// 插件
import demoPlugins from './modules/demo-plugins'
// 组件
import demoComponents from './modules/demo-components'
// 组件
import demoCharts from './modules/demo-charts'
// 组件库
import demoElement from './modules/demo-element'
// 功能
import demoPlayground from './modules/demo-playground'
// 示例
import demoBusiness from './modules/demo-business'
// 会员管理
import mbManage from './modules/mb-manage'
// 竞赛管理
import ctManage from './modules/ct-manage'
// CRUD
import demoD2Crud from './modules/demo-d2-crud'
// 第三方网页
import demoFrame from './modules/demo-frame'
// 角色与权限
import sysUser from './modules/sys-user'
// 菜单 侧边栏
export const menuAside = [
demoComponents,
demoPlugins,
demoCharts,
demoElement,
demoPlayground,
demoBusiness,
demoD2Crud,
demoFrame,
sysUser
]
// 菜单 顶栏
export const menuHeader = [
{
path: '/index',
title: '首页',
icon: 'home'
},
{
title: '系统管理',
icon: 'gear',
children: [
sysUser,
{ path: '/sys/org', title: '主办方管理', icon: 'globe' },
{
title: '系统设置',
icon: 'link',
children: [
{ path: '', title: '定时任务', icon: 'clock-o' },
{ path: '/sys/setting/code', title: '代码生成', icon: 'globe' },
{ path: '/sys/setting/log', title: '日志管理', icon: 'globe' }
]
}
]
},
{
title: '运营管理',
icon: 'link',
children: [
{ path: '/operation/place', title: '场馆管理', icon: 'users' },
{ path: '/operation/fee', title: '费用管理', icon: 'modx' },
{ path: '/operation/score', title: '积分榜管理', icon: 'reorder' }
]
},
{
title: '财务管理',
icon: 'link',
children: [
{
title: '竞赛订单',
icon: 'link',
children: [
{ path: '/finance/competitionOrder/classification', title: '分级公共赛订单', icon: 'globe' },
{ path: '/finance/competitionOrder/club', title: '俱乐部公开赛订单', icon: 'globe' }
]
}
]
},
{
title: '组件',
icon: 'puzzle-piece',
children: [
demoD2Crud,
demoComponents,
demoElement,
demoCharts,
demoPlugins,
demoFrame
]
},
ctManage,
mbManage,
demoPlayground,
demoBusiness,
]
...@@ -16,7 +16,6 @@ module.exports = { ...@@ -16,7 +16,6 @@ module.exports = {
devServer: { devServer: {
publicPath: baseUrl // 和 baseUrl 保持一致 publicPath: baseUrl // 和 baseUrl 保持一致
}, },
transpileDependencies: [/node_modules[/\\\\](element-ui|vuex|)[/\\\\]/],
// 默认设置: https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-service/lib/config/base.js // 默认设置: https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-service/lib/config/base.js
chainWebpack: config => { chainWebpack: config => {
// 解决 cli3 热更新失效 https://github.com/vuejs/vue-cli/issues/1559 // 解决 cli3 热更新失效 https://github.com/vuejs/vue-cli/issues/1559
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment