routerConfig.js 35 KB

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