|
@@ -86,7 +86,7 @@ import flashbuyVerification from './verificationManager/flashbuyVerification/ind
|
86
|
86
|
import flashbuyVerificationList from './verificationManager/flashbuyVerification/verificationList/index' // 抢购核销列表
|
87
|
87
|
|
88
|
88
|
import dataStatistics from './dataStatistics/index' // 数据统计
|
89
|
|
-import frontEndUserList from './dataStatistics/frontEndUserList/index' // 课程管理
|
|
89
|
+// import frontEndUserList from './dataStatistics/frontEndUserList/index' // 课程管理
|
90
|
90
|
import cardCouponList from './dataStatistics/cardCouponList/index' // 卡券统计列表
|
91
|
91
|
import cardCouponUsedList from './dataStatistics/cardCouponUsedList/index' // 卡券使用统计
|
92
|
92
|
import courseStatisticsList from './dataStatistics/courseStatisticsList/index' // 课程统计列表
|
|
@@ -148,6 +148,9 @@ import ReturnBooks from './library/borrow/bookreturn' // 图书归还
|
148
|
148
|
import borrowList from './library/borrow/borrowList' // 借阅记录
|
149
|
149
|
import appointmentList from './library/borrow/appointmentList' // 预约记录
|
150
|
150
|
|
|
151
|
+import CustomerManager from './customerManager' // 会员管理
|
|
152
|
+import CustomerList from './customerManager/customer' // 会员列表
|
|
153
|
+
|
151
|
154
|
export default {
|
152
|
155
|
router: [
|
153
|
156
|
{
|
|
@@ -548,12 +551,7 @@ export default {
|
548
|
551
|
path: 'dataStatistics',
|
549
|
552
|
name: 'dataStatistics',
|
550
|
553
|
component: dataStatistics,
|
551
|
|
- children: [{ // 前台用户列表
|
552
|
|
- path: 'frontEndUserList',
|
553
|
|
- name: 'frontEndUserList',
|
554
|
|
- component: frontEndUserList,
|
555
|
|
- children: []
|
556
|
|
- }, { // 卡券统计列表
|
|
554
|
+ children: [{ // 卡券统计列表
|
557
|
555
|
path: 'cardCouponList',
|
558
|
556
|
name: 'cardCouponList',
|
559
|
557
|
component: cardCouponList,
|
|
@@ -793,6 +791,16 @@ export default {
|
793
|
791
|
component: appointmentList,
|
794
|
792
|
children: []
|
795
|
793
|
}]
|
|
794
|
+ },{
|
|
795
|
+ path: 'member',
|
|
796
|
+ name: 'member',
|
|
797
|
+ component: CustomerManager,
|
|
798
|
+ children: [{
|
|
799
|
+ path: 'list',
|
|
800
|
+ name: 'memberList',
|
|
801
|
+ component: CustomerList,
|
|
802
|
+ children: []
|
|
803
|
+ }],
|
796
|
804
|
}]
|
797
|
805
|
},
|
798
|
806
|
],
|