routerConfig.js 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411
  1. export const routerConfig = [
  2. {
  3. path: '/user',
  4. component: '../layouts/UserLayout',
  5. routes: [
  6. {
  7. name: 'login',
  8. path: '/user/login',
  9. component: './user/login',
  10. },
  11. ],
  12. },
  13. { path: '/', redirect: '/welcome' },
  14. {
  15. path: '/',
  16. component: '../layouts/BasicLayout',
  17. routes: [
  18. {
  19. name: 'Demo',
  20. path: '/demo',
  21. component: '@/components/Demo/ListDemo/Demo',
  22. },
  23. {
  24. name: '欢迎',
  25. path: '/welcome',
  26. icon: 'smile',
  27. component: './Welcome',
  28. },
  29. {
  30. name: '数据统计',
  31. path: '/statistics',
  32. icon: 'dashboard',
  33. routes: [
  34. {
  35. path: '/statistics/charts',
  36. name: '统计',
  37. component: './Count/CountCharts',
  38. },
  39. {
  40. path: '/statistics/charts/details',
  41. name: '统计图表',
  42. component: './Count/CountDetails',
  43. hideInMenu: true
  44. },
  45. {
  46. path: '/statistics/list',
  47. name: '统计原始数据',
  48. component: './Count/CountList',
  49. },
  50. {
  51. path: '/statistics/duration',
  52. name: '时段统计',
  53. component: './Count/DurationCount',
  54. },
  55. {
  56. path: '/statistics/trendtotal',
  57. name: '整体趋势',
  58. component: './Count/TrendTotal',
  59. },
  60. {
  61. path: '/statistics/userpay',
  62. name: '用户付费趋势',
  63. component: './Count/TrendUserPay',
  64. },
  65. {
  66. path: '/statistics/useraccess',
  67. name: '用户访问趋势',
  68. component: './Count/TrendUserAccess',
  69. },
  70. {
  71. path: '/statistics/channelregist',
  72. name: '渠道注册趋势',
  73. component: './Count/TrendChannelRegist',
  74. },
  75. {
  76. path: '/statistics/operatedata',
  77. name: 'IM',
  78. component: './Count/OperateData',
  79. },
  80. {
  81. path: '/statistics/crcount',
  82. name: '语聊统计',
  83. component: './Count/CRCount',
  84. },
  85. {
  86. path: '/statistics/userKeep',
  87. name: '留存统计',
  88. component: './Count/UserKeep',
  89. },
  90. {
  91. path: '/statistics/nobleConsume',
  92. name: '贵族消费',
  93. component: './Count/NobleConsume',
  94. },
  95. {
  96. path: '/statistics/chatMatch',
  97. name: '速配语聊',
  98. component: './Count/ChatMatch',
  99. },
  100. {
  101. path: '/statistics/riskDataManage',
  102. name: '风控数据管理',
  103. component: './Count/Riskdatamanage'
  104. },
  105. {
  106. path: '/statistics/signstatistics',
  107. name: '签到统计',
  108. component: './Count/Signstatistics'
  109. },
  110. {
  111. path: '/statistics/RoomInPK',
  112. name: '房间内PK统计',
  113. component: './Count/RoomInPK'
  114. },
  115. {
  116. path: '/statistics/CrossRoomPK',
  117. name: '跨房PK统计',
  118. component: './Count/CrossRoomPK'
  119. },
  120. {
  121. path: '/statistics/CatchDolphins',
  122. name: '抓海豚统计',
  123. component: './Count/CatchDolphins'
  124. },
  125. {
  126. path: '/statistics/exportExcel',
  127. name: '导出统计文件',
  128. component: './Count/ExportExcel'
  129. },
  130. {
  131. path: '/statistics/goldstatistics',
  132. name: '金币统计',
  133. component: './Count/Goldstatistics'
  134. },
  135. {
  136. path: '/statistics/wish',
  137. name: '许愿任务统计',
  138. component: './Count/Wishstatistics'
  139. },
  140. {
  141. path: '/statistics/broadcasts',
  142. name: '个播统计',
  143. component: './Count/Broadcastsstatistics'
  144. },
  145. {
  146. path: '/statistics/dynamic',
  147. name: '动态统计',
  148. component: './Count/Dynamicstatistics'
  149. },
  150. {
  151. component: './404',
  152. },
  153. ]
  154. },
  155. {
  156. name: '主播管理',
  157. path: '/anchor',
  158. icon: 'aliwangwang',
  159. routes: [
  160. {
  161. path: '/anchor/list',
  162. name: '主播列表',
  163. component: './Anchor/AnchorList',
  164. },
  165. {
  166. path: '/anchor/awaitCheck',
  167. name: '主播审核列表',
  168. component: './Anchor/AnchorCheckList',
  169. },
  170. {
  171. path: '/anchor/list/detail',
  172. name: '主播详情',
  173. component: './Anchor/AnchorDetail',
  174. hideInMenu: true,
  175. }
  176. ],
  177. },
  178. {
  179. name: '聊天管理',
  180. path: '/chat',
  181. icon: 'message',
  182. routes: [
  183. {
  184. path: '/chat/listsingle',
  185. name: '单聊主播管理',
  186. component: './Chat/SingleList',
  187. },
  188. {
  189. path: '/chat/listsingle/detail',
  190. name: '主播详情',
  191. component: './Anchor/AnchorDetail',
  192. hideInMenu: true,
  193. },
  194. {
  195. path: '/chat/record',
  196. name: '单聊记录',
  197. component: './Chat/SingleChatRecord'
  198. },
  199. {
  200. path: '/chat/record/details',
  201. name: '单聊记录详情',
  202. component: './Chat/SingleRecordDetail',
  203. hideInMenu: true,
  204. },
  205. {
  206. path: '/chat/singleSuggest',
  207. name: '单聊推荐',
  208. component: './Chat/SingleSuggestList'
  209. },
  210. {
  211. path: '/chat/manager',
  212. name: '单聊超管',
  213. component: './Chat/SuperManager'
  214. },
  215. {
  216. path: '/chat/manageList',
  217. name: '单聊监管',
  218. component: './Chat/ChatManage'
  219. },
  220. {
  221. path: '/chat/manageList/details',
  222. name: '单聊监管详情',
  223. component: './Chat/ChatManageDetails',
  224. hideInMenu: true
  225. },
  226. {
  227. path: '/chat/match',
  228. name: '单聊匹配',
  229. component: './Chat/SingleChatMatchRecord'
  230. },
  231. {
  232. path: '/chat/singleEvaluate',
  233. name: '单聊评价标签管理',
  234. component: './Chat/SingleEvaluate',
  235. },
  236. {
  237. path: '/chat/singlecategory',
  238. name: '单聊分类',
  239. component: './Chat/SingleCategory'
  240. },
  241. {
  242. path: '/chat/voiceChatList',
  243. name: '语音速配',
  244. component: './Chat/VoiceChatList'
  245. }
  246. ]
  247. },
  248. {
  249. name: '公会管理',
  250. path: '/agent',
  251. icon: 'flag',
  252. routes: [
  253. {
  254. name: '公会列表',
  255. path: '/agent/list',
  256. component: './Agent/AgentList',
  257. },
  258. {
  259. name: '公会详情',
  260. path: '/agent/list/details',
  261. component: './Agent/AgentDetails',
  262. hideInMenu: true
  263. },
  264. {
  265. name: '新建公会',
  266. path: '/agent/list/create',
  267. component: './Agent/AgentCreate',
  268. hideInMenu: true
  269. },
  270. {
  271. name: '编辑公会',
  272. path: '/agent/list/edit',
  273. component: './Agent/AgentCreate',
  274. hideInMenu: true
  275. },
  276. ],
  277. },
  278. {
  279. name: '家族管理',
  280. path: '/family',
  281. icon: 'cluster',
  282. routes: [
  283. {
  284. name: '家族列表',
  285. path: '/family/list',
  286. component: './Family/FamilyList',
  287. },
  288. {
  289. name: '家族详情',
  290. path: '/family/list/details',
  291. component: './Family/FamilyDetails',
  292. hideInMenu: true
  293. },
  294. {
  295. name: '新建家族',
  296. path: '/family/list/create',
  297. component: './Family/FamilyCreate',
  298. hideInMenu: true
  299. },
  300. {
  301. name: '编辑家族',
  302. path: '/family/list/edit',
  303. component: './Family/FamilyCreate',
  304. hideInMenu: true
  305. },
  306. ],
  307. },
  308. {
  309. name: '技能管理',
  310. path: '/skill',
  311. icon: 'rocket',
  312. routes: [
  313. {
  314. name: '技能列表',
  315. path: '/skill/list',
  316. component: './Skill/SkillList'
  317. },
  318. {
  319. name: '技能详情',
  320. path: '/skill/list/details',
  321. component: './Skill/SkillDetails',
  322. hideInMenu: true
  323. },
  324. {
  325. name: '技能订单列表',
  326. path: '/skill/orderList',
  327. component: './Skill/SkillOrderList'
  328. },
  329. {
  330. name: '技能认证列表',
  331. path: '/skill/skillAuditList',
  332. component: './Skill/SkillAuditList'
  333. },
  334. {
  335. name: '派单记录列表',
  336. path: '/skill/sendOrderList',
  337. component: './Skill/SendOrderList'
  338. },
  339. ]
  340. },
  341. {
  342. name: '用户管理',
  343. path: '/customer',
  344. icon: 'user',
  345. routes: [
  346. {
  347. name: '用户列表',
  348. path: '/customer/list',
  349. component: './Customer/UserList'
  350. },
  351. {
  352. name: '用户详情',
  353. path: '/customer/list/details',
  354. component: './Customer/UserDetails',
  355. hideInMenu: true
  356. },
  357. {
  358. name: '用户在线记录',
  359. path: '/customer/record',
  360. component: './Customer/UserOnlineRecord'
  361. },
  362. {
  363. name: '注册用户',
  364. path: '/customer/newUsers',
  365. component: './Customer/NewUserList'
  366. },
  367. {
  368. name: '授权列表',
  369. path: '/customer/Authorizationlist',
  370. component: './Customer/Authorizationlist'
  371. },
  372. {
  373. name: '用户资料配置',
  374. path: '/customer/userInfoConfigs',
  375. component: './Customer/UserInfoConfigs'
  376. },
  377. {
  378. name: '设备管理',
  379. path: '/customer/facilitymanage',
  380. component: './Customer/Facilitymanage'
  381. },
  382. {
  383. name: '封禁记录',
  384. path: '/customer/bannedRecord',
  385. component: './Customer/BannedRecord/BannedRecord'
  386. },
  387. {
  388. name: '实名认证管理',
  389. path: '/customer/realnamemanage',
  390. component: './Customer/Realnamemanage'
  391. },
  392. ],
  393. },
  394. {
  395. name: '用户关系',
  396. path: '/relationship',
  397. icon: 'reconciliation',
  398. routes: [
  399. {
  400. name: '守护类型配置',
  401. path: '/relationship/guardType',
  402. component: './Relationship/GuardType',
  403. },
  404. {
  405. name: '守护时长配置',
  406. path: '/relationship/guardDuration',
  407. component: './Relationship/GuardDuration',
  408. },
  409. {
  410. name: '守护关系记录',
  411. path: '/relationship/guardRelation',
  412. component: './Relationship/GuardRelation',
  413. },
  414. {
  415. name: '守护统计数据',
  416. path: '/relationship/guardStatistical',
  417. component: './Relationship/GuardStatistical',
  418. },
  419. {
  420. name: '拍卖记录',
  421. path: '/relationship/auctionRecord',
  422. component: './Relationship/AuctionRecord',
  423. },
  424. {
  425. name: '拍卖统计数据',
  426. path: '/relationship/auctionStatistical',
  427. component: './Relationship/AuctionStatistical',
  428. }
  429. ],
  430. },
  431. {
  432. name: '数据管理',
  433. path: '/data',
  434. icon: 'cloud',
  435. routes: [
  436. {
  437. name: '举报列表',
  438. path: '/data/reports',
  439. component: './Data/ReportList',
  440. },
  441. {
  442. name: '反馈列表',
  443. path: '/data/feedBack',
  444. component: './Data/FeedBackList',
  445. },
  446. {
  447. name: '举报详情',
  448. path: '/data/reports/details',
  449. component: './Data/ReportDetails',
  450. hideInMenu: true
  451. },
  452. {
  453. path: '/data/animation',
  454. name: '动效管理',
  455. component: './Gift/AnimationList',
  456. },
  457. {
  458. path: '/data/animation/add',
  459. name: '添加动效',
  460. component: './Gift/AddAnimation',
  461. hideInMenu: true
  462. },
  463. {
  464. path: '/data/animation/update',
  465. name: '编辑动效',
  466. component: './Gift/AddAnimation',
  467. hideInMenu: true
  468. },
  469. {
  470. path: '/data/combomove',
  471. name: '连击横幅动效管理',
  472. component: './Data/Combomove'
  473. },
  474. {
  475. path: '/data/level',
  476. name: '积分等级',
  477. component: './Data/LevelList',
  478. },
  479. {
  480. path: '/data/words',
  481. name: '敏感词',
  482. component: './Data/WordsList',
  483. },
  484. {
  485. path: '/data/medal',
  486. name: '勋章',
  487. component: './Data/MedalList',
  488. },
  489. {
  490. path: '/data/mount',
  491. name: '坐骑',
  492. component: './Data/MountList',
  493. },
  494. {
  495. path: '/data/headWear',
  496. name: '头饰',
  497. component: './Data/HeadWearList',
  498. },
  499. {
  500. path: '/data/prop',
  501. name: '道具',
  502. component: './Data/PropList',
  503. },
  504. {
  505. path: '/data/hobbyTag',
  506. name: '兴趣标签管理',
  507. component: './Data/HobbyTag',
  508. },
  509. {
  510. path: '/data/userTag',
  511. name: '用户标签管理',
  512. component: './Data/UserTag',
  513. },
  514. {
  515. path: '/data/money',
  516. name: '货币管理',
  517. component: './Data/MoneyList',
  518. },
  519. {
  520. path: '/data/translation',
  521. name: '国际化数据管理',
  522. component: './Data/TranslationList',
  523. },
  524. {
  525. path: '/data/datapush',
  526. name: '消息推送管理',
  527. component: './Data/DataPushConfig',
  528. },
  529. {
  530. path: '/data/bankcard',
  531. name: '银行管理',
  532. component: './Data/Bankcard/Bankcard'
  533. },
  534. {
  535. path: '/data/sayhello',
  536. name: '入场招呼管理',
  537. component: './Data/Sayhello'
  538. },
  539. {
  540. path: '/data/ikAnalyze',
  541. name: 'ik分词管理',
  542. component: './Data/IkAnalyze'
  543. },
  544. {
  545. path: '/data/noticeSetting',
  546. name: '通知配置管理',
  547. component: './Data/Noticesetting'
  548. },
  549. {
  550. path: '/data/noticesettingdetail',
  551. name: '通知配置详情',
  552. component: './Data/Noticesettingdetail'
  553. },
  554. {
  555. path: '/data/bubblebox',
  556. name: '气泡框',
  557. component: './Data/Bubblebox'
  558. },
  559. {
  560. path: '/data/signIn',
  561. name: '签到管理',
  562. component: './Data/SignIn'
  563. },
  564. {
  565. path: '/data/wishmanage',
  566. name: '许愿任务管理',
  567. component: './Data/Wishmanage'
  568. },
  569. {
  570. path: '/data/countbeautyrisk',
  571. name: '数美风控',
  572. component: './Data/Countbeautyrisk'
  573. },
  574. {
  575. path: '/data/roomrating',
  576. name: '房间评级权重',
  577. component: './Data/Roomrating'
  578. }
  579. ],
  580. },
  581. {
  582. name: '音乐管理',
  583. path: '/music',
  584. icon: 'customer-service',
  585. routes: [
  586. {
  587. name: '音乐列表',
  588. path: '/music/list',
  589. component: './Music/Music',
  590. },
  591. {
  592. name: '音乐审核列表',
  593. path: '/music/auditlist',
  594. component: './Music/Musicauditlist',
  595. },
  596. ]
  597. },
  598. {
  599. name: '活动管理',
  600. path: '/activity',
  601. icon: 'flag',
  602. routes: [
  603. {
  604. path: '/activity/list',
  605. name: '活动列表',
  606. component: './Activity/ActivityList'
  607. },
  608. {
  609. path: '/activity/list/details',
  610. name: '活动详情',
  611. component: './Activity/ActivityDetails',
  612. hideInMenu: true
  613. },
  614. {
  615. path: '/activity/list/lotterycreate',
  616. name: '新增抽奖管理',
  617. component: './Activity/LotteryCreate',
  618. hideInMenu: true
  619. },
  620. {
  621. path: '/activity/list/lotteryedit',
  622. name: '编辑抽奖管理',
  623. component: './Activity/LotteryCreate',
  624. hideInMenu: true
  625. },
  626. {
  627. path: '/activity/list/lotterydetails',
  628. name: '抽奖管理详情',
  629. component: './Activity/LotteryDetails',
  630. hideInMenu: true
  631. },
  632. {
  633. path: '/activity/trigger',
  634. name: '触发器',
  635. component: './Activity/TriggerList'
  636. },
  637. {
  638. path: '/activity/trigger/add',
  639. name: '添加触发器',
  640. component: './Activity/AddTrigger',
  641. hideInMenu: true
  642. },
  643. {
  644. path: '/activity/trigger/update',
  645. name: '编辑触发器',
  646. component: './Activity/AddTrigger',
  647. hideInMenu: true
  648. },
  649. {
  650. path: '/activity/lotteryWinAndLoss',
  651. name: '抽奖活动盈亏',
  652. component: './Activity/LotteryWinAndLoss'
  653. },
  654. {
  655. path: '/activity/list/createCollection',
  656. name: '收集活动',
  657. component: './Activity/CreateCollection',
  658. hideInMenu: true
  659. },
  660. {
  661. path: '/activity/list/headLineCreate',
  662. name: '头条活动',
  663. component: './Activity/HeadLineCreate',
  664. hideInMenu: true
  665. },
  666. {
  667. path: '/activity/list/headLineDetails',
  668. name: '头条活动详情',
  669. component: './Activity/HeadLineDetails',
  670. hideInMenu: true
  671. },
  672. {
  673. path: '/activity/list/headLinePeriodDetails',
  674. name: '头条活动期数详情',
  675. component: './Activity/HeadLinePeriodDetails',
  676. hideInMenu: true
  677. },
  678. {
  679. path: '/activity/list/weekStarDetails',
  680. name: '期数详情',
  681. component: './Activity/WeekStarDetails',
  682. hideInMenu: true
  683. },
  684. {
  685. path: '/activity/automaticAward/list',
  686. name: '活动奖励发放',
  687. component: './Activity/AutomaticAwardList/AutomaticAwardList',
  688. },
  689. {
  690. path: '/activity/automaticAward/details',
  691. name: '活动奖励发放详情',
  692. component: './Activity/AutomaticAwardDetails/AutomaticAwardDetails',
  693. },
  694. {
  695. path: '/activity/rewardRecord/list',
  696. name: '活动奖励记录',
  697. component: "./Activity/Rewardrecord"
  698. },
  699. {
  700. path: '/activity/rewardRecord/detail',
  701. name: '奖励详情',
  702. component: "./Activity/Rewardrecorddetail"
  703. },
  704. {
  705. path: '/activity/playWay',
  706. name: '玩法管理',
  707. component: "./Activity/PlayWay/PlayWay"
  708. },
  709. {
  710. path: '/activity/playWay/detail',
  711. name: '玩法详情',
  712. component: "./Activity/PlayWay/PlayWayDetail/PlayWayDetail",
  713. hideInMenu: true
  714. },
  715. {
  716. path: '/activity/playWay/detail/rule',
  717. name: '玩法规则详情',
  718. component: "./Activity/PlayWay/PlayWayDetail/PlayWayRule/PlayWayRule",
  719. hideInMenu: true
  720. },
  721. {
  722. path: '/activity/playWaySetTime',
  723. name: '玩法规则详情',
  724. component: "./Activity/PlayWaySetTime/PlayWaySetTime",
  725. hideInMenu: true
  726. },
  727. {
  728. path: '/activity/fork',
  729. name: '餐叉实时统计',
  730. component: './Activity/Forkstatistics'
  731. },
  732. {
  733. path: '/activity/anniversary',
  734. name: '周年庆统计',
  735. component: './Activity/Anniversarystatistics'
  736. },
  737. {
  738. path: '/activity/anniversaryAward',
  739. name: '周年庆奖励',
  740. component: "./Activity/AnniversaryAutomaticAward/AnniversaryAutomaticAward",
  741. hideInMenu: true
  742. },
  743. {
  744. component: './404',
  745. }
  746. ],
  747. },
  748. {
  749. name: '直播管理',
  750. path: '/live',
  751. icon: 'play-square',
  752. routes: [
  753. {
  754. name: '主播监管',
  755. path: '/live/list',
  756. component: './Lives/LiveList',
  757. },
  758. {
  759. name: '置顶推荐',
  760. path: '/live/suggests',
  761. component: './Lives/SuggestList',
  762. },
  763. {
  764. name: '直播超管',
  765. path: '/live/supermanage',
  766. component: './Lives/LiveSuperManager'
  767. },
  768. {
  769. name: '直播统计',
  770. path: '/live/livecount',
  771. component: './Lives/LiveCount'
  772. },
  773. {
  774. name: 'PK列表',
  775. path: '/live/pkList',
  776. component: './Lives/PkList'
  777. },
  778. {
  779. name: 'PK详情',
  780. path: '/live/pkList/detail',
  781. component: './Lives/PkDetail',
  782. hideInMenu: true
  783. },
  784. {
  785. path: '/live/liveCategory',
  786. name: '直播分类',
  787. component: './Lives/LiveCategory',
  788. },
  789. {
  790. path: '/live/liveTag',
  791. name: '直播标签',
  792. component: './Lives/LiveTagList',
  793. },
  794. {
  795. path: '/live/liverate',
  796. name: '直播码率管理',
  797. component: './Lives/LiveRateList',
  798. }
  799. ],
  800. },
  801. {
  802. name: '语聊管理',
  803. path: '/chatRoom',
  804. icon: 'shop',
  805. routes: [
  806. {
  807. name: '房间分类',
  808. path: '/chatRoom/category',
  809. component: './ChatRoom/ChatRoomCategory',
  810. },
  811. {
  812. name: '房间背景',
  813. path: '/chatRoom/background',
  814. component: './ChatRoom/ChatBackground',
  815. },
  816. {
  817. name: '房间列表',
  818. path: '/chatRoom/roomList',
  819. component: './ChatRoom/ChatRoomList',
  820. },
  821. {
  822. name: '房间详情',
  823. path: '/chatRoom/roomList/roomDetails',
  824. component: './ChatRoom/ChatRoomDetails',
  825. hideInMenu: true
  826. },
  827. {
  828. name: '用户权限',
  829. path: '/chatRoom/userPermission',
  830. component: './ChatRoom/UserPermission',
  831. },
  832. {
  833. name: '家族权限',
  834. path: '/chatRoom/familyPermission',
  835. component: './ChatRoom/FamilyPermission',
  836. },
  837. {
  838. name: '表情管理',
  839. path: '/chatRoom/facialExpression',
  840. component: './ChatRoom/FacialExpressionList',
  841. },
  842. {
  843. name: '房间流水',
  844. path: '/chatRoom/flow',
  845. component: './ChatRoom/ChatRoomFlow',
  846. },
  847. {
  848. name: '房间评级',
  849. path: '/chatRoom/roomConsume',
  850. component: './ChatRoom/RoomConsumeStatistical',
  851. },
  852. {
  853. name: '直播分类',
  854. path: '/chatRoom/broadcasts',
  855. component: './ChatRoom/BroadcastsCategory',
  856. },
  857. ]
  858. },
  859. {
  860. name: '内容管理',
  861. path: '/feeds',
  862. icon: 'database',
  863. routes: [
  864. {
  865. path: '/feeds/list',
  866. name: '内容列表',
  867. component: './Feeds/FeedManage',
  868. },
  869. {
  870. path: '/feeds/approve',
  871. name: '内容人工审核',
  872. component: './Feeds/FeedApprove',
  873. },
  874. {
  875. path: '/feeds/photowall',
  876. name: '背景墙列表',
  877. component: './Feeds/Photowall'
  878. },
  879. {
  880. path: '/feeds/Headportrait',
  881. name: '头像昵称审核',
  882. component: './Feeds/Headportrait'
  883. },
  884. {
  885. path: '/feeds/coverCheck',
  886. name: '封面审核',
  887. component: './Feeds/CoverCheck/CoverCheck'
  888. },
  889. {
  890. path: '/feeds/dynamicmanage',
  891. name: '动态管理',
  892. component: './Feeds/Dynamicmanage'
  893. },
  894. {
  895. path: '/feeds/synchronousdynamic',
  896. name: '同步动态',
  897. component: './Feeds/Synchronousdynamic'
  898. },
  899. {
  900. path: '/feeds/Alertslist',
  901. name: '快讯列表',
  902. component: './Feeds/Alertslist'
  903. }
  904. ]
  905. },
  906. {
  907. name: '礼物管理',
  908. path: '/gift',
  909. icon: 'gift',
  910. routes: [
  911. {
  912. path: '/gift/addGift',
  913. name: '添加礼物',
  914. component: './Gift/AddGift',
  915. },
  916. {
  917. path: '/gift/giftList',
  918. name: '礼物列表',
  919. component: './Gift/GiftList',
  920. },
  921. {
  922. path: '/gift/giftList/giftDetail',
  923. name: '礼物详情',
  924. component: './Gift/GiftDetail',
  925. hideInMenu: true
  926. },
  927. {
  928. path: '/gift/giftList/updateGift',
  929. name: '编辑礼物',
  930. component: './Gift/AddGift',
  931. hideInMenu: true
  932. },
  933. {
  934. path: '/gift/tagList',
  935. name: '礼物标签',
  936. component: './Gift/TagList',
  937. }
  938. ],
  939. },
  940. {
  941. name: '管理员管理',
  942. path: '/admin',
  943. icon: 'tool',
  944. routes: [
  945. {
  946. name: '管理员列表',
  947. path: '/admin/list',
  948. component: './Admin/AdminList',
  949. },
  950. {
  951. name: '角色组列表',
  952. path: '/admin/rolegroup',
  953. component: './Admin/RoleGroupList',
  954. },
  955. {
  956. name: '角色列表',
  957. path: '/admin/rolelist',
  958. component: './Admin/RoleList',
  959. },
  960. {
  961. name: '创建角色',
  962. path: '/admin/rolelist/create',
  963. component: './Admin/RoleCreate',
  964. hideInMenu: true
  965. }
  966. ],
  967. },
  968. {
  969. name: '财务管理',
  970. path: '/finance',
  971. icon: 'dollar',
  972. routes: [
  973. {
  974. name: '星币提现',
  975. path: '/finance/withdraw',
  976. component: './Finance/WithDrawList',
  977. },
  978. {
  979. name: '粉钻提现',
  980. path: '/finance/withDustDraw',
  981. component: './Finance/WithDrawList',
  982. },
  983. {
  984. name: '家族提现',
  985. path: '/finance/familywithdraw',
  986. component: './Finance/FamilyWithDraw'
  987. },
  988. {
  989. name: '公会提现',
  990. path: '/finance/agentwithdraw',
  991. component: './Finance/AgentWithDraw'
  992. },
  993. {
  994. name: '每日充值记录',
  995. path: '/finance/dailyrecharge',
  996. component: './Finance/UserDailyRecharge',
  997. },
  998. {
  999. name: '支付订单',
  1000. path: '/finance/payorder',
  1001. component: './Finance/PayOrder',
  1002. },
  1003. {
  1004. name: '充值项目列表',
  1005. path: '/finance/investlist',
  1006. component: './Finance/InvestList',
  1007. },
  1008. {
  1009. name: '幸运礼物配置列表',
  1010. path: '/finance/lgconfiglist',
  1011. component: './Finance/LGConfigList',
  1012. },
  1013. {
  1014. name: '价格配置列表',
  1015. path: '/finance/priceconfig',
  1016. component: './Finance/PriceConfig',
  1017. },
  1018. {
  1019. name: '贵族价格配置',
  1020. path: '/finance/nobles',
  1021. component: './Finance/NobleList',
  1022. },
  1023. {
  1024. name: '钱包操作',
  1025. path: '/finance/walletAction',
  1026. component: './Finance/WalletAction',
  1027. },
  1028. {
  1029. name: '钱包查询',
  1030. path: '/finance/walletSearch',
  1031. component: './Finance/WalletSearch',
  1032. },
  1033. {
  1034. name: '背包查询',
  1035. path: '/finance/bagSearch',
  1036. component: './Finance/BagSearch',
  1037. },
  1038. {
  1039. name: '虚拟币种管理',
  1040. path: '/finance/virtualcoin',
  1041. component: './Finance/VirtualCoin',
  1042. },
  1043. {
  1044. name: 'VIP充值项目',
  1045. path: '/finance/vipRecharge',
  1046. component: './Finance/VipRecharge/VipRecharge',
  1047. },
  1048. {
  1049. name: '财务统计',
  1050. path: '/finance/statistics',
  1051. component: './Finance/FinanceStatistics',
  1052. },
  1053. {
  1054. name: '主播工资管理',
  1055. path: '/finance/anchorsalary',
  1056. component: './Finance/AnchorSalary',
  1057. },
  1058. {
  1059. name: '邀请奖励配置',
  1060. path: '/finance/inviteconfig',
  1061. component: './Finance/InviteConfig',
  1062. },
  1063. {
  1064. name: '汇总核算',
  1065. path: '/finance/summaryAccounting',
  1066. component: './Finance/SummaryAccounting',
  1067. },
  1068. {
  1069. name: '财务周数据',
  1070. path: '/finance/weekStatic',
  1071. component: './Finance/WeekStatic/WeekStatic',
  1072. }
  1073. ],
  1074. },
  1075. {
  1076. name: '运营管理',
  1077. path: '/biz',
  1078. icon: 'cluster',
  1079. routes: [
  1080. {
  1081. name: '广告管理',
  1082. path: '/biz/banners',
  1083. component: './Operation/BannerList',
  1084. },
  1085. {
  1086. name: '靓号管理',
  1087. path: '/biz/nicenum',
  1088. component: './Operation/NiceNumber',
  1089. },
  1090. {
  1091. name: '赠送物品',
  1092. path: '/biz/giveGift',
  1093. component: './Operation/GiveGift',
  1094. },
  1095. {
  1096. name: '回收物品',
  1097. path: '/biz/recoverGift',
  1098. component: './Operation/RecoverGift',
  1099. },
  1100. {
  1101. name: '邀请海报',
  1102. path: '/biz/inviteposter',
  1103. component: './Operation/InvitePoster',
  1104. },
  1105. {
  1106. name: '推送管理',
  1107. path: '/biz/pushmanage',
  1108. component: './Operation/PushManage',
  1109. },
  1110. {
  1111. name: '推送详情',
  1112. path: '/biz/pushmanage/details',
  1113. component: './Operation/PushDetails',
  1114. },
  1115. {
  1116. name: '附近的人管理',
  1117. path: '/biz/nearBy',
  1118. component: './Operation/NearBy',
  1119. },
  1120. {
  1121. name: '交友速配',
  1122. path: '/biz/friendsdating',
  1123. component: './Operation/Friendsdating',
  1124. },
  1125. {
  1126. name: 'PK管理',
  1127. path: '/biz/pkmanagement',
  1128. component: './Operation/Pkmanagement'
  1129. },
  1130. {
  1131. name: '房间内PK记录',
  1132. path: '/biz/pkrecord',
  1133. component: './Operation/PKrecord'
  1134. },
  1135. {
  1136. name: '跨房间PK记录',
  1137. path: '/biz/acrossroompk',
  1138. component: './Operation/Acrossroompk'
  1139. },
  1140. {
  1141. name: 'PK详情',
  1142. path: '/biz/pkdetail',
  1143. component: './Operation/PKdetail'
  1144. },
  1145. {
  1146. name: '搜索关键词',
  1147. path: '/biz/keywordsearch',
  1148. component: './Operation/Keywordsearch',
  1149. },
  1150. {
  1151. name: '真爱榜管理',
  1152. path: '/biz/reallove',
  1153. component: './Operation/Reallove'
  1154. },
  1155. {
  1156. name: '小时榜管理',
  1157. path: '/biz/hoursmanage',
  1158. component: './Operation/Hoursmanage'
  1159. },
  1160. {
  1161. name: '首页快捷入口',
  1162. path: '/biz/homeentrance',
  1163. component: './Operation/Homeentrance'
  1164. },
  1165. {
  1166. name: '历史消息记录',
  1167. path: '/biz/historyrecord',
  1168. component: './Operation/Historyrecord'
  1169. },
  1170. {
  1171. name: '短信发送',
  1172. path: '/biz/sendmessage',
  1173. component: './Operation/Sendmessage'
  1174. },
  1175. {
  1176. name: '弹窗提醒',
  1177. path: '/biz/remind',
  1178. component: './Operation/Remind/Remind'
  1179. },
  1180. {
  1181. name: '首页为你推荐',
  1182. path: '/biz/processToken',
  1183. component: './Operation/ProcessToken'
  1184. },
  1185. {
  1186. name: '快捷入口轮播',
  1187. path: '/biz/quickentry',
  1188. component: './Operation/Quickentry'
  1189. },
  1190. {
  1191. name: '许愿任务记录',
  1192. path: '/biz/wishtaskrecord',
  1193. component: './Operation/Wishtaskrecord'
  1194. },
  1195. {
  1196. name: '个播开播记录',
  1197. path: '/biz/liveStatistics',
  1198. component: './Operation/LiveStatistics/LiveStatistics'
  1199. },
  1200. {
  1201. name: '首页大图推荐',
  1202. path: '/biz/homePictureRecommend',
  1203. component: './Operation/HomePictureRecommend'
  1204. }
  1205. ],
  1206. },
  1207. {
  1208. name: '金币商城',
  1209. path: '/coinShop',
  1210. icon: 'bank',
  1211. routes: [
  1212. {
  1213. name: '类目管理',
  1214. path: '/coinShop/categoryList',
  1215. component: './CoinShop/ProductCategoryList',
  1216. },
  1217. {
  1218. name: '商品管理',
  1219. path: '/coinShop/productList',
  1220. component: './CoinShop/ProductList',
  1221. },
  1222. {
  1223. name: '添加商品',
  1224. path: '/coinShop/productList/addProduct',
  1225. component: './CoinShop/AddProduct',
  1226. hideInMenu: true
  1227. },
  1228. {
  1229. name: '编辑商品',
  1230. path: '/coinShop/productList/updateProduct',
  1231. component: './CoinShop/AddProduct',
  1232. hideInMenu: true
  1233. },
  1234. {
  1235. name: '订单管理',
  1236. path: '/coinShop/orderList',
  1237. component: './CoinShop/OrderList',
  1238. }
  1239. ],
  1240. },
  1241. {
  1242. name: '渠道管理',
  1243. path: '/chanel',
  1244. icon: 'gold',
  1245. routes: [
  1246. {
  1247. name: '渠道列表',
  1248. path: '/chanel/channelList',
  1249. component: './Chanel/ChannelList',
  1250. },
  1251. {
  1252. name: '渠道分组',
  1253. path: '/chanel/group',
  1254. component: './Chanel/ChannelGroup/ChannelGroup',
  1255. },
  1256. {
  1257. name: '添加渠道',
  1258. path: '/chanel/addChannel',
  1259. component: './Chanel/AddChannel',
  1260. hideInMenu: true
  1261. },
  1262. {
  1263. name: '渠道详情',
  1264. path: '/chanel/detail',
  1265. component: './Chanel/ChannelDetail',
  1266. hideInMenu: true
  1267. },
  1268. {
  1269. name: '编辑渠道',
  1270. path: '/chanel/updateChannel',
  1271. component: './Chanel/AddChannel',
  1272. hideInMenu: true
  1273. },
  1274. {
  1275. name: '渠道账号',
  1276. path: '/chanel/channelmanager',
  1277. component: './Chanel/ChannelManager',
  1278. },
  1279. {
  1280. name: '短信服务商',
  1281. path: '/chanel/smsagent',
  1282. component: './Chanel/SmsAgentList',
  1283. },
  1284. {
  1285. name: '短信模版',
  1286. path: '/chanel/smstemp',
  1287. component: './Chanel/SmsTempList',
  1288. },
  1289. {
  1290. name: '短信签名',
  1291. path: '/chanel/smssign',
  1292. component: './Chanel/SmsSignList',
  1293. },
  1294. {
  1295. name: '一键登录服务商',
  1296. path: '/chanel/oneKeyLoginAgentList',
  1297. component: './Chanel/OneKeyLoginAgentList',
  1298. },
  1299. {
  1300. name: '微信支付配置',
  1301. path: '/chanel/wechatPay',
  1302. component: './Chanel/PayConfigWxPageList',
  1303. },
  1304. {
  1305. name: '支付宝支付配置',
  1306. path: '/chanel/aliPay',
  1307. component: './Chanel/PayConfigAlipayPageList',
  1308. },
  1309. {
  1310. name: '第三方授权配置',
  1311. path: '/chanel/authConfig',
  1312. component: './Chanel/OauthConfigPageList',
  1313. },
  1314. {
  1315. name: '华为支付配置',
  1316. path: '/chanel/huaweiPay',
  1317. component: './Chanel/PayConfigHuaweiPageList',
  1318. },
  1319. {
  1320. name: '语聊房配置',
  1321. path: '/chanel/crConfig',
  1322. component: './Chanel/ChatRoomConfig',
  1323. },
  1324. {
  1325. name: '直播配置',
  1326. path: '/chanel/liveConfig',
  1327. component: './Chanel/LiveConfig/LiveConfig',
  1328. },
  1329. {
  1330. component: './404',
  1331. },
  1332. ],
  1333. },
  1334. {
  1335. name: '销售管理',
  1336. path: '/sale',
  1337. icon: 'menu',
  1338. routes: [
  1339. {
  1340. name: '销售综合管理',
  1341. path: '/sale/employee',
  1342. component: './Sale/SaleEmployee',
  1343. },
  1344. {
  1345. name: '额度申请审批',
  1346. path: '/sale/rechargeapply',
  1347. component: './Sale/RechargeApply',
  1348. },
  1349. {
  1350. name: '销售充币记录',
  1351. path: '/sale/rechargerecord',
  1352. component: './Sale/RechargeCoinRecord',
  1353. },
  1354. {
  1355. name: '额度申请',
  1356. path: '/sale/myapply',
  1357. component: './Sale/MyRechargeApply',
  1358. },
  1359. {
  1360. name: '充币管理',
  1361. path: '/sale/myrecharge',
  1362. component: './Sale/MyRechargeCoin',
  1363. },
  1364. {
  1365. name: '支付订单',
  1366. path: '/sale/payorder',
  1367. component: './Finance/PayOrder',
  1368. },
  1369. ],
  1370. },
  1371. {
  1372. name: '菜单管理',
  1373. path: '/adminroutes',
  1374. icon: 'menu',
  1375. routes: [
  1376. {
  1377. name: '路由菜单列表',
  1378. path: '/adminroutes/list',
  1379. component: './AdminRoutes/AdminRoutes',
  1380. },
  1381. {
  1382. name: '路由动作列表',
  1383. path: '/adminroutes/actions',
  1384. component: './AdminRoutes/RouteActions',
  1385. }
  1386. ],
  1387. },
  1388. {
  1389. name: '系统管理',
  1390. path: '/system',
  1391. icon: 'setting',
  1392. routes: [
  1393. {
  1394. name: 'app版本管理',
  1395. path: '/system/upgrades',
  1396. component: './System/AppUpgrade',
  1397. },
  1398. {
  1399. name: '参数配置表',
  1400. path: '/system/paramsSetting',
  1401. component: './System/ParamsSetting',
  1402. }
  1403. ],
  1404. }
  1405. ],
  1406. },
  1407. {
  1408. component: './404',
  1409. },
  1410. ];