routerConfig.js 36 KB

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