mirror of
https://gitee.com/ZhongBangKeJi/crmeb_java.git
synced 2026-04-25 20:28:34 +08:00
v1.1
1、提货点 2、客服(腾讯云智服) 3、接口权限控制 4、复制第三方商品可配置 4、优化附件上传配置 5、手机端核销订单 6、手机端订单统计、订单管理 7、短信优化 8、订阅消息全自动化
This commit is contained in:
53
admin/src/router/modules/mobile.js
Normal file
53
admin/src/router/modules/mobile.js
Normal file
@@ -0,0 +1,53 @@
|
||||
import Layout from '@/layout'
|
||||
|
||||
const mobileRouter = {
|
||||
path: '/javaMobile',
|
||||
component: Layout,
|
||||
redirect: '/javaMobile/index',
|
||||
name: 'Mobile',
|
||||
alwaysShow: true,
|
||||
meta: {
|
||||
title: '移动端',
|
||||
icon: 'clipboard'
|
||||
},
|
||||
children: [
|
||||
{
|
||||
path: 'orderCancellation',
|
||||
component: () => import('@/views/mobile/orderCancellation/index.vue'),
|
||||
name: 'OrderCancellation',
|
||||
meta: { title: '订单核销', icon: '' }
|
||||
},
|
||||
{
|
||||
path: 'orderStatistics',
|
||||
component: () => import('@/views/mobile/orderStatistics/index.vue'),
|
||||
name: 'OrderStatistics',
|
||||
meta: { title: '订单统计' }
|
||||
},
|
||||
{
|
||||
path: 'orderList/:types?',
|
||||
component: () => import('@/views/mobile/orderStatistics/orderList.vue'),
|
||||
name: 'OrderList',
|
||||
meta: { title: '订单列表' }
|
||||
},
|
||||
{
|
||||
path: 'orderDelivery/:oid/:id?',
|
||||
component: () => import('@/views/mobile/orderStatistics/orderDelivery.vue'),
|
||||
name: 'OrderDelivery',
|
||||
meta: { title: '订单发货' }
|
||||
},
|
||||
{
|
||||
path: 'orderDetail/:id?/:goname?',
|
||||
component: () => import('@/views/mobile/orderStatistics/orderDetail.vue'),
|
||||
name: 'OrderDetail',
|
||||
meta: { title: '订单详情' }
|
||||
},
|
||||
{
|
||||
path: 'orderStatisticsDetail/:type/:time?',
|
||||
component: () => import('@/views/mobile/orderStatistics/Statistics.vue'),
|
||||
name: 'OrderStatistics',
|
||||
meta: { title: '订单数据统计' }
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
export default mobileRouter
|
||||
Reference in New Issue
Block a user