routerConfig.js 39 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394
  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. },
  389. {
  390. name: '用户关系',
  391. path: '/relationship',
  392. icon: 'reconciliation',
  393. routes: [
  394. {
  395. name: '守护类型配置',
  396. path: '/relationship/guardType',
  397. component: './Relationship/GuardType',
  398. },
  399. {
  400. name: '守护时长配置',
  401. path: '/relationship/guardDuration',
  402. component: './Relationship/GuardDuration',
  403. },
  404. {
  405. name: '守护关系记录',
  406. path: '/relationship/guardRelation',
  407. component: './Relationship/GuardRelation',
  408. },
  409. {
  410. name: '守护统计数据',
  411. path: '/relationship/guardStatistical',
  412. component: './Relationship/GuardStatistical',
  413. },
  414. {
  415. name: '拍卖记录',
  416. path: '/relationship/auctionRecord',
  417. component: './Relationship/AuctionRecord',
  418. },
  419. {
  420. name: '拍卖统计数据',
  421. path: '/relationship/auctionStatistical',
  422. component: './Relationship/AuctionStatistical',
  423. }
  424. ],
  425. },
  426. {
  427. name: '数据管理',
  428. path: '/data',
  429. icon: 'cloud',
  430. routes: [
  431. {
  432. name: '举报列表',
  433. path: '/data/reports',
  434. component: './Data/ReportList',
  435. },
  436. {
  437. name: '反馈列表',
  438. path: '/data/feedBack',
  439. component: './Data/FeedBackList',
  440. },
  441. {
  442. name: '举报详情',
  443. path: '/data/reports/details',
  444. component: './Data/ReportDetails',
  445. hideInMenu: true
  446. },
  447. {
  448. path: '/data/animation',
  449. name: '动效管理',
  450. component: './Gift/AnimationList',
  451. },
  452. {
  453. path: '/data/animation/add',
  454. name: '添加动效',
  455. component: './Gift/AddAnimation',
  456. hideInMenu: true
  457. },
  458. {
  459. path: '/data/animation/update',
  460. name: '编辑动效',
  461. component: './Gift/AddAnimation',
  462. hideInMenu: true
  463. },
  464. {
  465. path: '/data/combomove',
  466. name: '连击横幅动效管理',
  467. component: './Data/Combomove'
  468. },
  469. {
  470. path: '/data/level',
  471. name: '积分等级',
  472. component: './Data/LevelList',
  473. },
  474. {
  475. path: '/data/words',
  476. name: '敏感词',
  477. component: './Data/WordsList',
  478. },
  479. {
  480. path: '/data/medal',
  481. name: '勋章',
  482. component: './Data/MedalList',
  483. },
  484. {
  485. path: '/data/mount',
  486. name: '坐骑',
  487. component: './Data/MountList',
  488. },
  489. {
  490. path: '/data/headWear',
  491. name: '头饰',
  492. component: './Data/HeadWearList',
  493. },
  494. {
  495. path: '/data/prop',
  496. name: '道具',
  497. component: './Data/PropList',
  498. },
  499. {
  500. path: '/data/hobbyTag',
  501. name: '兴趣标签管理',
  502. component: './Data/HobbyTag',
  503. },
  504. {
  505. path: '/data/userTag',
  506. name: '用户标签管理',
  507. component: './Data/UserTag',
  508. },
  509. {
  510. path: '/data/money',
  511. name: '货币管理',
  512. component: './Data/MoneyList',
  513. },
  514. {
  515. path: '/data/translation',
  516. name: '国际化数据管理',
  517. component: './Data/TranslationList',
  518. },
  519. {
  520. path: '/data/datapush',
  521. name: '消息推送管理',
  522. component: './Data/DataPushConfig',
  523. },
  524. {
  525. path: '/data/bankcard',
  526. name: '银行管理',
  527. component: './Data/Bankcard/Bankcard'
  528. },
  529. {
  530. path: '/data/sayhello',
  531. name: '入场招呼管理',
  532. component: './Data/Sayhello'
  533. },
  534. {
  535. path: '/data/ikAnalyze',
  536. name: 'ik分词管理',
  537. component: './Data/IkAnalyze'
  538. },
  539. {
  540. path: '/data/noticeSetting',
  541. name: '通知配置管理',
  542. component: './Data/Noticesetting'
  543. },
  544. {
  545. path: '/data/noticesettingdetail',
  546. name: '通知配置详情',
  547. component: './Data/Noticesettingdetail'
  548. },
  549. {
  550. path: '/data/bubblebox',
  551. name: '气泡框',
  552. component: './Data/Bubblebox'
  553. },
  554. {
  555. path: '/data/signIn',
  556. name: '签到管理',
  557. component: './Data/SignIn'
  558. },
  559. {
  560. path: '/data/wishmanage',
  561. name: '许愿任务管理',
  562. component: './Data/Wishmanage'
  563. },
  564. {
  565. path: '/data/countbeautyrisk',
  566. name: '数美风控',
  567. component: './Data/Countbeautyrisk'
  568. },
  569. {
  570. path: '/data/roomrating',
  571. name: '房间评级权重',
  572. component: './Data/Roomrating'
  573. }
  574. ],
  575. },
  576. {
  577. name: '音乐管理',
  578. path: '/music',
  579. icon: 'customer-service',
  580. routes: [
  581. {
  582. name: '音乐列表',
  583. path: '/music/list',
  584. component: './Music/Music',
  585. },
  586. {
  587. name: '音乐审核列表',
  588. path: '/music/auditlist',
  589. component: './Music/Musicauditlist',
  590. },
  591. ]
  592. },
  593. {
  594. name: '活动管理',
  595. path: '/activity',
  596. icon: 'flag',
  597. routes: [
  598. {
  599. path: '/activity/list',
  600. name: '活动列表',
  601. component: './Activity/ActivityList'
  602. },
  603. {
  604. path: '/activity/list/details',
  605. name: '活动详情',
  606. component: './Activity/ActivityDetails',
  607. hideInMenu: true
  608. },
  609. {
  610. path: '/activity/list/lotterycreate',
  611. name: '新增抽奖管理',
  612. component: './Activity/LotteryCreate',
  613. hideInMenu: true
  614. },
  615. {
  616. path: '/activity/list/lotteryedit',
  617. name: '编辑抽奖管理',
  618. component: './Activity/LotteryCreate',
  619. hideInMenu: true
  620. },
  621. {
  622. path: '/activity/list/lotterydetails',
  623. name: '抽奖管理详情',
  624. component: './Activity/LotteryDetails',
  625. hideInMenu: true
  626. },
  627. {
  628. path: '/activity/trigger',
  629. name: '触发器',
  630. component: './Activity/TriggerList'
  631. },
  632. {
  633. path: '/activity/trigger/add',
  634. name: '添加触发器',
  635. component: './Activity/AddTrigger',
  636. hideInMenu: true
  637. },
  638. {
  639. path: '/activity/trigger/update',
  640. name: '编辑触发器',
  641. component: './Activity/AddTrigger',
  642. hideInMenu: true
  643. },
  644. {
  645. path: '/activity/lotteryWinAndLoss',
  646. name: '抽奖活动盈亏',
  647. component: './Activity/LotteryWinAndLoss'
  648. },
  649. {
  650. path: '/activity/list/createCollection',
  651. name: '收集活动',
  652. component: './Activity/CreateCollection',
  653. hideInMenu: true
  654. },
  655. {
  656. path: '/activity/list/headLineCreate',
  657. name: '头条活动',
  658. component: './Activity/HeadLineCreate',
  659. hideInMenu: true
  660. },
  661. {
  662. path: '/activity/list/headLineDetails',
  663. name: '头条活动详情',
  664. component: './Activity/HeadLineDetails',
  665. hideInMenu: true
  666. },
  667. {
  668. path: '/activity/list/headLinePeriodDetails',
  669. name: '头条活动期数详情',
  670. component: './Activity/HeadLinePeriodDetails',
  671. hideInMenu: true
  672. },
  673. {
  674. path: '/activity/list/weekStarDetails',
  675. name: '期数详情',
  676. component: './Activity/WeekStarDetails',
  677. hideInMenu: true
  678. },
  679. {
  680. path: '/activity/automaticAward/list',
  681. name: '活动奖励发放',
  682. component: './Activity/AutomaticAwardList/AutomaticAwardList',
  683. },
  684. {
  685. path: '/activity/automaticAward/details',
  686. name: '活动奖励发放详情',
  687. component: './Activity/AutomaticAwardDetails/AutomaticAwardDetails',
  688. },
  689. {
  690. path: '/activity/rewardRecord/list',
  691. name: '活动奖励记录',
  692. component: "./Activity/Rewardrecord"
  693. },
  694. {
  695. path: '/activity/rewardRecord/detail',
  696. name: '奖励详情',
  697. component: "./Activity/Rewardrecorddetail"
  698. },
  699. {
  700. path: '/activity/playWay',
  701. name: '玩法管理',
  702. component: "./Activity/PlayWay/PlayWay"
  703. },
  704. {
  705. path: '/activity/playWay/detail',
  706. name: '玩法详情',
  707. component: "./Activity/PlayWay/PlayWayDetail/PlayWayDetail",
  708. hideInMenu: true
  709. },
  710. {
  711. path: '/activity/playWay/detail/rule',
  712. name: '玩法规则详情',
  713. component: "./Activity/PlayWay/PlayWayDetail/PlayWayRule/PlayWayRule",
  714. hideInMenu: true
  715. },
  716. {
  717. path: '/activity/playWaySetTime',
  718. name: '玩法规则详情',
  719. component: "./Activity/PlayWaySetTime/PlayWaySetTime",
  720. hideInMenu: true
  721. },
  722. {
  723. path: '/activity/fork',
  724. name: '餐叉实时统计',
  725. component: './Activity/Forkstatistics'
  726. },
  727. {
  728. path: '/activity/anniversary',
  729. name: '周年庆统计',
  730. component: './Activity/Anniversarystatistics'
  731. },
  732. {
  733. path: '/activity/anniversaryAward',
  734. name: '周年庆奖励',
  735. component: "./Activity/AnniversaryAutomaticAward/AnniversaryAutomaticAward",
  736. hideInMenu: true
  737. },
  738. {
  739. component: './404',
  740. }
  741. ],
  742. },
  743. {
  744. name: '直播管理',
  745. path: '/live',
  746. icon: 'play-square',
  747. routes: [
  748. {
  749. name: '主播监管',
  750. path: '/live/list',
  751. component: './Lives/LiveList',
  752. },
  753. {
  754. name: '置顶推荐',
  755. path: '/live/suggests',
  756. component: './Lives/SuggestList',
  757. },
  758. {
  759. name: '直播超管',
  760. path: '/live/supermanage',
  761. component: './Lives/LiveSuperManager'
  762. },
  763. {
  764. name: '直播统计',
  765. path: '/live/livecount',
  766. component: './Lives/LiveCount'
  767. },
  768. {
  769. name: 'PK列表',
  770. path: '/live/pkList',
  771. component: './Lives/PkList'
  772. },
  773. {
  774. name: 'PK详情',
  775. path: '/live/pkList/detail',
  776. component: './Lives/PkDetail',
  777. hideInMenu: true
  778. },
  779. {
  780. path: '/live/liveCategory',
  781. name: '直播分类',
  782. component: './Lives/LiveCategory',
  783. },
  784. {
  785. path: '/live/liveTag',
  786. name: '直播标签',
  787. component: './Lives/LiveTagList',
  788. },
  789. {
  790. path: '/live/liverate',
  791. name: '直播码率管理',
  792. component: './Lives/LiveRateList',
  793. }
  794. ],
  795. },
  796. {
  797. name: '语聊管理',
  798. path: '/chatRoom',
  799. icon: 'shop',
  800. routes: [
  801. {
  802. name: '房间分类',
  803. path: '/chatRoom/category',
  804. component: './ChatRoom/ChatRoomCategory',
  805. },
  806. {
  807. name: '房间背景',
  808. path: '/chatRoom/background',
  809. component: './ChatRoom/ChatBackground',
  810. },
  811. {
  812. name: '房间列表',
  813. path: '/chatRoom/roomList',
  814. component: './ChatRoom/ChatRoomList',
  815. },
  816. {
  817. name: '房间详情',
  818. path: '/chatRoom/roomList/roomDetails',
  819. component: './ChatRoom/ChatRoomDetails',
  820. hideInMenu: true
  821. },
  822. {
  823. name: '用户权限',
  824. path: '/chatRoom/userPermission',
  825. component: './ChatRoom/UserPermission',
  826. },
  827. {
  828. name: '家族权限',
  829. path: '/chatRoom/familyPermission',
  830. component: './ChatRoom/FamilyPermission',
  831. },
  832. {
  833. name: '表情管理',
  834. path: '/chatRoom/facialExpression',
  835. component: './ChatRoom/FacialExpressionList',
  836. },
  837. {
  838. name: '房间流水',
  839. path: '/chatRoom/flow',
  840. component: './ChatRoom/ChatRoomFlow',
  841. },
  842. {
  843. name: '房间评级',
  844. path: '/chatRoom/roomConsume',
  845. component: './ChatRoom/RoomConsumeStatistical',
  846. },
  847. {
  848. name: '直播分类',
  849. path: '/chatRoom/broadcasts',
  850. component: './ChatRoom/BroadcastsCategory',
  851. },
  852. ]
  853. },
  854. {
  855. name: '内容管理',
  856. path: '/feeds',
  857. icon: 'database',
  858. routes: [
  859. {
  860. path: '/feeds/list',
  861. name: '内容列表',
  862. component: './Feeds/FeedManage',
  863. },
  864. {
  865. path: '/feeds/approve',
  866. name: '内容人工审核',
  867. component: './Feeds/FeedApprove',
  868. },
  869. {
  870. path: '/feeds/photowall',
  871. name: '背景墙列表',
  872. component: './Feeds/Photowall'
  873. },
  874. {
  875. path: '/feeds/Headportrait',
  876. name: '头像昵称审核',
  877. component: './Feeds/Headportrait'
  878. },
  879. {
  880. path: '/feeds/coverCheck',
  881. name: '封面审核',
  882. component: './Feeds/CoverCheck/CoverCheck'
  883. },
  884. {
  885. path: '/feeds/dynamicmanage',
  886. name: '动态管理',
  887. component: './Feeds/Dynamicmanage'
  888. },
  889. {
  890. path: '/feeds/synchronousdynamic',
  891. name: '同步动态',
  892. component: './Feeds/Synchronousdynamic'
  893. },
  894. {
  895. path: '/feeds/Alertslist',
  896. name: '快讯列表',
  897. component: './Feeds/Alertslist'
  898. }
  899. ]
  900. },
  901. {
  902. name: '礼物管理',
  903. path: '/gift',
  904. icon: 'gift',
  905. routes: [
  906. {
  907. path: '/gift/addGift',
  908. name: '添加礼物',
  909. component: './Gift/AddGift',
  910. },
  911. {
  912. path: '/gift/giftList',
  913. name: '礼物列表',
  914. component: './Gift/GiftList',
  915. },
  916. {
  917. path: '/gift/giftList/giftDetail',
  918. name: '礼物详情',
  919. component: './Gift/GiftDetail',
  920. hideInMenu: true
  921. },
  922. {
  923. path: '/gift/giftList/updateGift',
  924. name: '编辑礼物',
  925. component: './Gift/AddGift',
  926. hideInMenu: true
  927. },
  928. {
  929. path: '/gift/tagList',
  930. name: '礼物标签',
  931. component: './Gift/TagList',
  932. }
  933. ],
  934. },
  935. {
  936. name: '管理员管理',
  937. path: '/admin',
  938. icon: 'tool',
  939. routes: [
  940. {
  941. name: '管理员列表',
  942. path: '/admin/list',
  943. component: './Admin/AdminList',
  944. },
  945. {
  946. name: '角色组列表',
  947. path: '/admin/rolegroup',
  948. component: './Admin/RoleGroupList',
  949. },
  950. {
  951. name: '角色列表',
  952. path: '/admin/rolelist',
  953. component: './Admin/RoleList',
  954. },
  955. {
  956. name: '创建角色',
  957. path: '/admin/rolelist/create',
  958. component: './Admin/RoleCreate',
  959. hideInMenu: true
  960. }
  961. ],
  962. },
  963. {
  964. name: '财务管理',
  965. path: '/finance',
  966. icon: 'dollar',
  967. routes: [
  968. {
  969. name: '星币提现',
  970. path: '/finance/withdraw',
  971. component: './Finance/WithDrawList',
  972. },
  973. {
  974. name: '粉钻提现',
  975. path: '/finance/withDustDraw',
  976. component: './Finance/WithDrawList',
  977. },
  978. {
  979. name: '家族提现',
  980. path: '/finance/familywithdraw',
  981. component: './Finance/FamilyWithDraw'
  982. },
  983. {
  984. name: '公会提现',
  985. path: '/finance/agentwithdraw',
  986. component: './Finance/AgentWithDraw'
  987. },
  988. {
  989. name: '每日充值记录',
  990. path: '/finance/dailyrecharge',
  991. component: './Finance/UserDailyRecharge',
  992. },
  993. {
  994. name: '支付订单',
  995. path: '/finance/payorder',
  996. component: './Finance/PayOrder',
  997. },
  998. {
  999. name: '充值项目列表',
  1000. path: '/finance/investlist',
  1001. component: './Finance/InvestList',
  1002. },
  1003. {
  1004. name: '幸运礼物配置列表',
  1005. path: '/finance/lgconfiglist',
  1006. component: './Finance/LGConfigList',
  1007. },
  1008. {
  1009. name: '价格配置列表',
  1010. path: '/finance/priceconfig',
  1011. component: './Finance/PriceConfig',
  1012. },
  1013. {
  1014. name: '贵族价格配置',
  1015. path: '/finance/nobles',
  1016. component: './Finance/NobleList',
  1017. },
  1018. {
  1019. name: '钱包操作',
  1020. path: '/finance/walletAction',
  1021. component: './Finance/WalletAction',
  1022. },
  1023. {
  1024. name: '钱包查询',
  1025. path: '/finance/walletSearch',
  1026. component: './Finance/WalletSearch',
  1027. },
  1028. {
  1029. name: '背包查询',
  1030. path: '/finance/bagSearch',
  1031. component: './Finance/BagSearch',
  1032. },
  1033. {
  1034. name: '虚拟币种管理',
  1035. path: '/finance/virtualcoin',
  1036. component: './Finance/VirtualCoin',
  1037. },
  1038. {
  1039. name: 'VIP充值项目',
  1040. path: '/finance/vipRecharge',
  1041. component: './Finance/VipRecharge/VipRecharge',
  1042. },
  1043. {
  1044. name: '财务统计',
  1045. path: '/finance/statistics',
  1046. component: './Finance/FinanceStatistics',
  1047. },
  1048. {
  1049. name: '主播工资管理',
  1050. path: '/finance/anchorsalary',
  1051. component: './Finance/AnchorSalary',
  1052. },
  1053. {
  1054. name: '邀请奖励配置',
  1055. path: '/finance/inviteconfig',
  1056. component: './Finance/InviteConfig',
  1057. },
  1058. {
  1059. name: '汇总核算',
  1060. path: '/finance/summaryAccounting',
  1061. component: './Finance/SummaryAccounting',
  1062. },
  1063. {
  1064. name: '财务周数据',
  1065. path: '/finance/weekStatic',
  1066. component: './Finance/WeekStatic/WeekStatic',
  1067. }
  1068. ],
  1069. },
  1070. {
  1071. name: '运营管理',
  1072. path: '/biz',
  1073. icon: 'cluster',
  1074. routes: [
  1075. {
  1076. name: '广告管理',
  1077. path: '/biz/banners',
  1078. component: './Operation/BannerList',
  1079. },
  1080. {
  1081. name: '靓号管理',
  1082. path: '/biz/nicenum',
  1083. component: './Operation/NiceNumber',
  1084. },
  1085. {
  1086. name: '赠送物品',
  1087. path: '/biz/giveGift',
  1088. component: './Operation/GiveGift',
  1089. },
  1090. {
  1091. name: '回收物品',
  1092. path: '/biz/recoverGift',
  1093. component: './Operation/RecoverGift',
  1094. },
  1095. {
  1096. name: '邀请海报',
  1097. path: '/biz/inviteposter',
  1098. component: './Operation/InvitePoster',
  1099. },
  1100. {
  1101. name: '推送管理',
  1102. path: '/biz/pushmanage',
  1103. component: './Operation/PushManage',
  1104. },
  1105. {
  1106. name: '推送详情',
  1107. path: '/biz/pushmanage/details',
  1108. component: './Operation/PushDetails',
  1109. },
  1110. {
  1111. name: '附近的人管理',
  1112. path: '/biz/nearBy',
  1113. component: './Operation/NearBy',
  1114. },
  1115. {
  1116. name: '交友速配',
  1117. path: '/biz/friendsdating',
  1118. component: './Operation/Friendsdating',
  1119. },
  1120. {
  1121. name: 'PK管理',
  1122. path: '/biz/pkmanagement',
  1123. component: './Operation/Pkmanagement'
  1124. },
  1125. {
  1126. name: '房间内PK记录',
  1127. path: '/biz/pkrecord',
  1128. component: './Operation/PKrecord'
  1129. },
  1130. {
  1131. name: '跨房间PK记录',
  1132. path: '/biz/acrossroompk',
  1133. component: './Operation/Acrossroompk'
  1134. },
  1135. {
  1136. name: 'PK详情',
  1137. path: '/biz/pkdetail',
  1138. component: './Operation/PKdetail'
  1139. },
  1140. {
  1141. name: '搜索关键词',
  1142. path: '/biz/keywordsearch',
  1143. component: './Operation/Keywordsearch',
  1144. },
  1145. {
  1146. name: '真爱榜管理',
  1147. path: '/biz/reallove',
  1148. component: './Operation/Reallove'
  1149. },
  1150. {
  1151. name: '小时榜管理',
  1152. path: '/biz/hoursmanage',
  1153. component: './Operation/Hoursmanage'
  1154. },
  1155. {
  1156. name: '首页快捷入口',
  1157. path: '/biz/homeentrance',
  1158. component: './Operation/Homeentrance'
  1159. },
  1160. {
  1161. name: '历史消息记录',
  1162. path: '/biz/historyrecord',
  1163. component: './Operation/Historyrecord'
  1164. },
  1165. {
  1166. name: '短信发送',
  1167. path: '/biz/sendmessage',
  1168. component: './Operation/Sendmessage'
  1169. },
  1170. {
  1171. name: '弹窗提醒',
  1172. path: '/biz/remind',
  1173. component: './Operation/Remind/Remind'
  1174. },
  1175. {
  1176. name: '首页为你推荐',
  1177. path: '/biz/processToken',
  1178. component: './Operation/ProcessToken'
  1179. },
  1180. {
  1181. name: '许愿任务记录',
  1182. path: '/biz/wishtaskrecord',
  1183. component: './Operation/Wishtaskrecord'
  1184. },
  1185. {
  1186. name: '个播开播记录',
  1187. path: '/biz/liveStatistics',
  1188. component: './Operation/LiveStatistics/LiveStatistics'
  1189. }
  1190. ],
  1191. },
  1192. {
  1193. name: '金币商城',
  1194. path: '/coinShop',
  1195. icon: 'bank',
  1196. routes: [
  1197. {
  1198. name: '类目管理',
  1199. path: '/coinShop/categoryList',
  1200. component: './CoinShop/ProductCategoryList',
  1201. },
  1202. {
  1203. name: '商品管理',
  1204. path: '/coinShop/productList',
  1205. component: './CoinShop/ProductList',
  1206. },
  1207. {
  1208. name: '添加商品',
  1209. path: '/coinShop/productList/addProduct',
  1210. component: './CoinShop/AddProduct',
  1211. hideInMenu: true
  1212. },
  1213. {
  1214. name: '编辑商品',
  1215. path: '/coinShop/productList/updateProduct',
  1216. component: './CoinShop/AddProduct',
  1217. hideInMenu: true
  1218. },
  1219. {
  1220. name: '订单管理',
  1221. path: '/coinShop/orderList',
  1222. component: './CoinShop/OrderList',
  1223. }
  1224. ],
  1225. },
  1226. {
  1227. name: '渠道管理',
  1228. path: '/chanel',
  1229. icon: 'gold',
  1230. routes: [
  1231. {
  1232. name: '渠道列表',
  1233. path: '/chanel/channelList',
  1234. component: './Chanel/ChannelList',
  1235. },
  1236. {
  1237. name: '渠道分组',
  1238. path: '/chanel/group',
  1239. component: './Chanel/ChannelGroup/ChannelGroup',
  1240. },
  1241. {
  1242. name: '添加渠道',
  1243. path: '/chanel/addChannel',
  1244. component: './Chanel/AddChannel',
  1245. hideInMenu: true
  1246. },
  1247. {
  1248. name: '渠道详情',
  1249. path: '/chanel/detail',
  1250. component: './Chanel/ChannelDetail',
  1251. hideInMenu: true
  1252. },
  1253. {
  1254. name: '编辑渠道',
  1255. path: '/chanel/updateChannel',
  1256. component: './Chanel/AddChannel',
  1257. hideInMenu: true
  1258. },
  1259. {
  1260. name: '渠道账号',
  1261. path: '/chanel/channelmanager',
  1262. component: './Chanel/ChannelManager',
  1263. },
  1264. {
  1265. name: '短信服务商',
  1266. path: '/chanel/smsagent',
  1267. component: './Chanel/SmsAgentList',
  1268. },
  1269. {
  1270. name: '短信模版',
  1271. path: '/chanel/smstemp',
  1272. component: './Chanel/SmsTempList',
  1273. },
  1274. {
  1275. name: '短信签名',
  1276. path: '/chanel/smssign',
  1277. component: './Chanel/SmsSignList',
  1278. },
  1279. {
  1280. name: '一键登录服务商',
  1281. path: '/chanel/oneKeyLoginAgentList',
  1282. component: './Chanel/OneKeyLoginAgentList',
  1283. },
  1284. {
  1285. name: '微信支付配置',
  1286. path: '/chanel/wechatPay',
  1287. component: './Chanel/PayConfigWxPageList',
  1288. },
  1289. {
  1290. name: '支付宝支付配置',
  1291. path: '/chanel/aliPay',
  1292. component: './Chanel/PayConfigAlipayPageList',
  1293. },
  1294. {
  1295. name: '第三方授权配置',
  1296. path: '/chanel/authConfig',
  1297. component: './Chanel/OauthConfigPageList',
  1298. },
  1299. {
  1300. name: '华为支付配置',
  1301. path: '/chanel/huaweiPay',
  1302. component: './Chanel/PayConfigHuaweiPageList',
  1303. },
  1304. {
  1305. name: '语聊房配置',
  1306. path: '/chanel/crConfig',
  1307. component: './Chanel/ChatRoomConfig',
  1308. },
  1309. {
  1310. name: '直播配置',
  1311. path: '/chanel/liveConfig',
  1312. component: './Chanel/LiveConfig/LiveConfig',
  1313. },
  1314. {
  1315. component: './404',
  1316. },
  1317. ],
  1318. },
  1319. {
  1320. name: '销售管理',
  1321. path: '/sale',
  1322. icon: 'menu',
  1323. routes: [
  1324. {
  1325. name: '销售综合管理',
  1326. path: '/sale/employee',
  1327. component: './Sale/SaleEmployee',
  1328. },
  1329. {
  1330. name: '额度申请审批',
  1331. path: '/sale/rechargeapply',
  1332. component: './Sale/RechargeApply',
  1333. },
  1334. {
  1335. name: '销售充币记录',
  1336. path: '/sale/rechargerecord',
  1337. component: './Sale/RechargeCoinRecord',
  1338. },
  1339. {
  1340. name: '额度申请',
  1341. path: '/sale/myapply',
  1342. component: './Sale/MyRechargeApply',
  1343. },
  1344. {
  1345. name: '充币管理',
  1346. path: '/sale/myrecharge',
  1347. component: './Sale/MyRechargeCoin',
  1348. },
  1349. {
  1350. name: '支付订单',
  1351. path: '/sale/payorder',
  1352. component: './Finance/PayOrder',
  1353. },
  1354. ],
  1355. },
  1356. {
  1357. name: '菜单管理',
  1358. path: '/adminroutes',
  1359. icon: 'menu',
  1360. routes: [
  1361. {
  1362. name: '路由菜单列表',
  1363. path: '/adminroutes/list',
  1364. component: './AdminRoutes/AdminRoutes',
  1365. },
  1366. {
  1367. name: '路由动作列表',
  1368. path: '/adminroutes/actions',
  1369. component: './AdminRoutes/RouteActions',
  1370. }
  1371. ],
  1372. },
  1373. {
  1374. name: '系统管理',
  1375. path: '/system',
  1376. icon: 'setting',
  1377. routes: [
  1378. {
  1379. name: 'app版本管理',
  1380. path: '/system/upgrades',
  1381. component: './System/AppUpgrade',
  1382. },
  1383. {
  1384. component: './404',
  1385. },
  1386. ],
  1387. }
  1388. ],
  1389. },
  1390. {
  1391. component: './404',
  1392. },
  1393. ];