|
@@ -1,9 +1,107 @@
|
|
|
const system = [{
|
|
const system = [{
|
|
|
|
|
+ path: '/system',
|
|
|
|
|
+ name: "system",
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '后台系统'
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/layouts/system/index.vue'),
|
|
|
|
|
+ children: [{
|
|
|
path: '/system',
|
|
path: '/system',
|
|
|
- name: "system",
|
|
|
|
|
|
|
+ name: 'system_index',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '首页',
|
|
|
|
|
+ auth: false
|
|
|
|
|
+ },
|
|
|
|
|
+<<<<<<< HEAD
|
|
|
|
|
+ component: () => import('@/components/system/index/index')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/index',
|
|
|
|
|
+ name: 'system_index',
|
|
|
meta: {
|
|
meta: {
|
|
|
- title: '后台系统'
|
|
|
|
|
|
|
+ title: '首页',
|
|
|
|
|
+ auth: false
|
|
|
},
|
|
},
|
|
|
|
|
+ component: () => import('@/components/system/index/index')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/user/index',
|
|
|
|
|
+ name: 'system_user_index',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '个人设置',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/setting/user/index')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/role/index',
|
|
|
|
|
+ name: 'system_role_index',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '角色管理'
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/setting/role/index')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/role/permissions',
|
|
|
|
|
+ name: 'system_role_permissions',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '权限配置'
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/setting/role/permissions')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/role/seting',
|
|
|
|
|
+ name: 'system_role_seting',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '角色设置'
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/setting/role/seting')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/admin/index',
|
|
|
|
|
+ name: 'system_admin_index',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '账号管理',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/setting/admin/index')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/setting/log/index',
|
|
|
|
|
+ name: 'system_setting_log_index',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '日志管理',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/setting/log/index')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/setting/log/login',
|
|
|
|
|
+ name: 'system_setting_log_login',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '用户登录',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/setting/log/login')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/user/list',
|
|
|
|
|
+ name: 'system_user_list',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '用户列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/user/list')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/user/workerList',
|
|
|
|
|
+ name: 'system_user_workerList',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '从业人员',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/user/workerList')
|
|
|
|
|
+=======
|
|
|
component: () => import('@/layouts/system/index.vue'),
|
|
component: () => import('@/layouts/system/index.vue'),
|
|
|
children: [{
|
|
children: [{
|
|
|
path: '/system',
|
|
path: '/system',
|
|
@@ -166,6 +264,15 @@ const system = [{
|
|
|
},
|
|
},
|
|
|
component: () => import('@/components/system/showTemplate/list')
|
|
component: () => import('@/components/system/showTemplate/list')
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/showTemplate/code',
|
|
|
|
|
+ name: 'system_showTemplate_code',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '模版激活码',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/showTemplate/code')
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
path: '/system/showTemplate/serviceType',
|
|
path: '/system/showTemplate/serviceType',
|
|
|
name: 'system_showTemplate_serviceType',
|
|
name: 'system_showTemplate_serviceType',
|
|
@@ -193,15 +300,6 @@ const system = [{
|
|
|
},
|
|
},
|
|
|
component: () => import('@/components/system/showTemplate/serviceLabel')
|
|
component: () => import('@/components/system/showTemplate/serviceLabel')
|
|
|
},
|
|
},
|
|
|
- {
|
|
|
|
|
- path: '/system/showTemplate/code',
|
|
|
|
|
- name: 'system_showTemplate_code',
|
|
|
|
|
- meta: {
|
|
|
|
|
- title: '激活码',
|
|
|
|
|
- auth: true
|
|
|
|
|
- },
|
|
|
|
|
- component: () => import('@/components/system/showTemplate/code')
|
|
|
|
|
- },
|
|
|
|
|
{
|
|
{
|
|
|
path: '/system/user/workType',
|
|
path: '/system/user/workType',
|
|
|
name: 'system_user_workType',
|
|
name: 'system_user_workType',
|
|
@@ -269,7 +367,7 @@ const system = [{
|
|
|
auth: true
|
|
auth: true
|
|
|
},
|
|
},
|
|
|
component: () => import('@/components/system/article/list.vue')
|
|
component: () => import('@/components/system/article/list.vue')
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/system/article/detail',
|
|
path: '/system/article/detail',
|
|
@@ -279,7 +377,7 @@ const system = [{
|
|
|
auth: true
|
|
auth: true
|
|
|
},
|
|
},
|
|
|
component: () => import('@/components/system/article/detail.vue')
|
|
component: () => import('@/components/system/article/detail.vue')
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/system/eduction/list',
|
|
path: '/system/eduction/list',
|
|
@@ -289,7 +387,7 @@ const system = [{
|
|
|
auth: true
|
|
auth: true
|
|
|
},
|
|
},
|
|
|
component: () => import('@/components/system/eduction/list.vue')
|
|
component: () => import('@/components/system/eduction/list.vue')
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/system/eduction/cate',
|
|
path: '/system/eduction/cate',
|
|
@@ -299,7 +397,7 @@ const system = [{
|
|
|
auth: true
|
|
auth: true
|
|
|
},
|
|
},
|
|
|
component: () => import('@/components/system/eduction/cate.vue')
|
|
component: () => import('@/components/system/eduction/cate.vue')
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/system/eduction/detail',
|
|
path: '/system/eduction/detail',
|
|
@@ -309,7 +407,7 @@ const system = [{
|
|
|
auth: true
|
|
auth: true
|
|
|
},
|
|
},
|
|
|
component: () => import('@/components/system/eduction/detail.vue')
|
|
component: () => import('@/components/system/eduction/detail.vue')
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/system/eduction/grlists',
|
|
path: '/system/eduction/grlists',
|
|
@@ -366,6 +464,7 @@ const system = [{
|
|
|
auth: true
|
|
auth: true
|
|
|
},
|
|
},
|
|
|
component: () => import('@/components/system/task/paytrade')
|
|
component: () => import('@/components/system/task/paytrade')
|
|
|
|
|
+<<<<<<< HEAD
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
path: '/system/signing/list',
|
|
path: '/system/signing/list',
|
|
@@ -457,44 +556,424 @@ const system = [{
|
|
|
},
|
|
},
|
|
|
component: () => import('@/components/system/points/bill')
|
|
component: () => import('@/components/system/points/bill')
|
|
|
},
|
|
},
|
|
|
|
|
+=======
|
|
|
|
|
+ }
|
|
|
|
|
+>>>>>>> cb1d49f18e1de41493a5367d7dbd57ab75e95ea5
|
|
|
]
|
|
]
|
|
|
|
|
+>>>>>>> 00cdb012347f8de7a2fb45a11f3a68c07563a0d7
|
|
|
},
|
|
},
|
|
|
|
|
|
|
|
{
|
|
{
|
|
|
- path: '/system/widget/images/index.html',
|
|
|
|
|
- name: `images`,
|
|
|
|
|
|
|
+ path: '/system/user/showTemplateList',
|
|
|
|
|
+ name: 'system_user_showTemplateList',
|
|
|
meta: {
|
|
meta: {
|
|
|
- auth: ['admin-user-user-index'],
|
|
|
|
|
- title: '上传图片'
|
|
|
|
|
|
|
+ title: '用户模板',
|
|
|
|
|
+ auth: true
|
|
|
},
|
|
},
|
|
|
- component: () => import('@/components/system/uploadPictures/widgetImg')
|
|
|
|
|
|
|
+ component: () => import('@/components/system/user/showTemplateList')
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- path: '/system/login',
|
|
|
|
|
- name: "system_login",
|
|
|
|
|
|
|
+ path: '/system/audit/infoAudit',
|
|
|
|
|
+ name: 'system_audit_infoAudit',
|
|
|
meta: {
|
|
meta: {
|
|
|
- title: '总用户登录'
|
|
|
|
|
|
|
+ title: '信息审核',
|
|
|
|
|
+ auth: true
|
|
|
},
|
|
},
|
|
|
- component: () => import('@/components/system/login/index')
|
|
|
|
|
|
|
+ component: () => import('@/components/system/audit/infoAudit')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/audit/infoAuditItem',
|
|
|
|
|
+ name: 'system_audit_infoAuditItem',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '信息审核详情',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/audit/infoAuditItem')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/audit/typeAudit',
|
|
|
|
|
+ name: 'system_audit_typeAudit',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '平台认证',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/audit/typeAudit')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/audit/typeAuditItem',
|
|
|
|
|
+ name: 'system_audit_typeAuditItem',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '平台认证详情',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/audit/typeAuditItem')
|
|
|
},
|
|
},
|
|
|
// {
|
|
// {
|
|
|
- // path: '/index',
|
|
|
|
|
- // name: "system_index_index",
|
|
|
|
|
|
|
+ // path: '/system/audit/userAudit',
|
|
|
|
|
+ // name: 'system_audit_userAudit',
|
|
|
// meta: {
|
|
// meta: {
|
|
|
- // title: '首页'
|
|
|
|
|
|
|
+ // title: '用户审核',
|
|
|
|
|
+ // auth: true
|
|
|
// },
|
|
// },
|
|
|
- // component: () => import('@/components/system/index/index')
|
|
|
|
|
|
|
+ // component: () => import('@/components/system/audit/userAudit')
|
|
|
// },
|
|
// },
|
|
|
|
|
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/showTemplate/list',
|
|
|
|
|
+ name: 'system_showTemplate_list',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '模板列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/showTemplate/list')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/showTemplate/serviceType',
|
|
|
|
|
+ name: 'system_showTemplate_serviceType',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '服务内容',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/showTemplate/serviceType')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/showTemplate/serviceTimeType',
|
|
|
|
|
+ name: 'system_showTemplate_serviceTimeType',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '收费时长类型',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/showTemplate/serviceTimeType')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/showTemplate/serviceLabel',
|
|
|
|
|
+ name: 'system_showTemplate_serviceLabel',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '标签列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/showTemplate/serviceLabel')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/showTemplate/code',
|
|
|
|
|
+ name: 'system_showTemplate_code',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '激活码',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/showTemplate/code')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/user/workType',
|
|
|
|
|
+ name: 'system_user_workType',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '职业类别',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/user/workType')
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/user/moneyDetail',
|
|
|
|
|
+ name: 'system_user_moneyDetail',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '余额明细',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/user/moneyDetail')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/sys/index',
|
|
|
|
|
+ name: 'system_sys_index',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '网站基本管理',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/setting/sys/index')
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/menu/sys',
|
|
|
|
|
+ name: 'system_menu_sys',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '菜单管理',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/setting/menu/sys')
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/adver/page',
|
|
|
|
|
+ name: 'system_adver_page',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '广告类别',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/adver/page.vue')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/adver/index',
|
|
|
|
|
+ name: 'system_adver_index',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '广告中心',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/adver/index.vue')
|
|
|
|
|
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/article/list',
|
|
|
|
|
+ name: 'system_article_list',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '文章列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/article/list.vue')
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/article/detail',
|
|
|
|
|
+ name: 'system_article_detail',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '文章详情',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/article/detail.vue')
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/eduction/list',
|
|
|
|
|
+ name: 'system_eduction_list',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '课程列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/eduction/list.vue')
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/eduction/cate',
|
|
|
|
|
+ name: 'system_eduction_cate',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '课程分类',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/eduction/cate.vue')
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/eduction/detail',
|
|
|
|
|
+ name: 'system_eduction_detail',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '课程详情',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/eduction/detail.vue')
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/eduction/grlists',
|
|
|
|
|
+ name: 'system_eduction_grlists',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '分组列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/eduction/grlists.vue')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/eduction/addGrlists',
|
|
|
|
|
+ name: 'system_eduction_addGrlists',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '分组详情',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/eduction/addGrlists.vue')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/eduction/teachList',
|
|
|
|
|
+ name: 'system_eduction_teachList',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '讲师列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/eduction/teachList.vue')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/adver/upsource',
|
|
|
|
|
+ name: 'system_adver_upsource',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '图片资源',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/adver/upsource.vue')
|
|
|
|
|
+
|
|
|
|
|
+ },
|
|
|
|
|
+
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/order/showTemplate',
|
|
|
|
|
+ name: 'system_order_showTemplate',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '模板订单',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/order/showTemplate')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/task/paytrade',
|
|
|
|
|
+ name: 'system_task_paytrade',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '支付记录',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/task/paytrade')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/signing/list',
|
|
|
|
|
+ name: 'system_signing_list',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '预约列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/signing/list')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/signing/lists',
|
|
|
|
|
+ name: 'system_signing_lists',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '合同模板列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/signing/lists')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/signing/createContract',
|
|
|
|
|
+ name: 'system_signing_createContract',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '创建合同模板',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/signing/createContract')
|
|
|
|
|
+ },
|
|
|
{
|
|
{
|
|
|
- path: '/',
|
|
|
|
|
- name: "system_login2",
|
|
|
|
|
|
|
+ path: '/system/chat/index',
|
|
|
|
|
+ name: 'system_chat_index',
|
|
|
meta: {
|
|
meta: {
|
|
|
- title: '总用户登录'
|
|
|
|
|
|
|
+ title: '聊天记录',
|
|
|
|
|
+ auth: true
|
|
|
},
|
|
},
|
|
|
- component: () => import('@/components/system/login/index')
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ component: () => import('@/components/system/chat/index')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/forum/index',
|
|
|
|
|
+ name: 'system_forum_index',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '发布者',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/forum/index')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/forum/list',
|
|
|
|
|
+ name: 'system_forum_list',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '贴子管理',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/forum/list')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/points/list',
|
|
|
|
|
+ name: 'system_points_list',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '积分商品',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/points/list')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/goods/cate',
|
|
|
|
|
+ name: 'system_goods_cate',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '商品分类',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/goods/cate')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/goods/list',
|
|
|
|
|
+ name: 'system_goods_list',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '商品列表',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/goods/list')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/points/czlist',
|
|
|
|
|
+ name: 'system_points_czlist',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '充值记录',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/points/czList')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/points/order',
|
|
|
|
|
+ name: 'system_points_order',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '积分订单',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/points/order')
|
|
|
|
|
+ },
|
|
|
|
|
+ {
|
|
|
|
|
+ path: '/system/points/bill',
|
|
|
|
|
+ name: 'system_points_bill',
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '积分流水',
|
|
|
|
|
+ auth: true
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/points/bill')
|
|
|
|
|
+ },
|
|
|
|
|
+ ]
|
|
|
|
|
+},
|
|
|
|
|
+
|
|
|
|
|
+{
|
|
|
|
|
+ path: '/system/widget/images/index.html',
|
|
|
|
|
+ name: `images`,
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ auth: ['admin-user-user-index'],
|
|
|
|
|
+ title: '上传图片'
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/uploadPictures/widgetImg')
|
|
|
|
|
+},
|
|
|
|
|
+{
|
|
|
|
|
+ path: '/system/login',
|
|
|
|
|
+ name: "system_login",
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '总用户登录'
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/login/index')
|
|
|
|
|
+},
|
|
|
|
|
+// {
|
|
|
|
|
+// path: '/index',
|
|
|
|
|
+// name: "system_index_index",
|
|
|
|
|
+// meta: {
|
|
|
|
|
+// title: '首页'
|
|
|
|
|
+// },
|
|
|
|
|
+// component: () => import('@/components/system/index/index')
|
|
|
|
|
+// },
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+{
|
|
|
|
|
+ path: '/',
|
|
|
|
|
+ name: "system_login2",
|
|
|
|
|
+ meta: {
|
|
|
|
|
+ title: '总用户登录'
|
|
|
|
|
+ },
|
|
|
|
|
+ component: () => import('@/components/system/login/index')
|
|
|
|
|
+}
|
|
|
|
|
|
|
|
|
|
|
|
|
];
|
|
];
|