routerConfig.js 35 KB

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