routerConfig.js 37 KB

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