router.config.js 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838
  1. export default [
  2. // user
  3. {
  4. path: '/user',
  5. component: '../layouts/UserLayout',
  6. routes: [
  7. { path: '/user', redirect: '/user/login' },
  8. { path: '/user/login', component: './User/Login' },
  9. ],
  10. },
  11. {
  12. path: '/pcdecorate_home/diy_page_lists_to_edit',
  13. component: '../layouts/UserLayout',
  14. Routes: ['src/pages/CheckLogin'],
  15. routes: [
  16. { path: '/pcdecorate_home/diy_page_lists_to_edit', component: './pcdecorate/home/edit_diy_page' },
  17. ],
  18. },
  19. {
  20. path: '/pcdecorate_topic/topic_diy_page_lists_to_edit',
  21. component: '../layouts/UserLayout',
  22. Routes: ['src/pages/CheckLogin'],
  23. routes: [
  24. { path: '/pcdecorate_topic/topic_diy_page_lists_to_edit', component: './pcdecorate/home/edit_diy_page' },
  25. ],
  26. },
  27. // app
  28. {
  29. path: '/',
  30. component: '../layouts/BasicLayout',
  31. Routes: ['src/pages/CheckLogin'],
  32. routes: [
  33. { path: '/', redirect: '/sysset_home/basic' },
  34. //系统配置—首页管理
  35. {
  36. path: '/sysset_home',
  37. icon: 'home',
  38. name: 'home',
  39. routes: [
  40. //概况页
  41. {
  42. path: '/sysset_home/basic',
  43. name: 'basic',
  44. component: './sysset/home/basic',
  45. }],
  46. },
  47. //系统配置—基本配置
  48. {
  49. path: '/sysset_setting',
  50. icon: 'setting',
  51. name: 'setting',
  52. routes: [
  53. //站点配置
  54. {
  55. path: '/sysset_setting/site_info',
  56. name: 'site_info',
  57. component: './sysset/base/site_info',
  58. },
  59. //图片配置
  60. {
  61. path: '/sysset_setting/pic_set',
  62. name: 'pic_set',
  63. component: './sysset/base/pic_set',
  64. },
  65. //支付配置
  66. {
  67. path: '/sysset_setting/payment',
  68. name: 'payment',
  69. component: './sysset/base/payment',
  70. },
  71. //运营配置
  72. {
  73. path: '/sysset_setting/order',
  74. name: 'order',
  75. component: './sysset/base/order',
  76. },
  77. ],
  78. },
  79. //系统配置—通知管理
  80. {
  81. path: '/sysset_notice_set',
  82. icon: 'bell',
  83. name: 'notice_set',
  84. routes: [
  85. //短信配置
  86. {
  87. path: '/sysset_notice_set/sms',
  88. name: 'sms',
  89. component: './sysset/notice_set/sms',
  90. },
  91. //消息模板
  92. {
  93. path: '/sysset_notice_set/msg_tpl',
  94. name: 'msg_tpl',
  95. component: './sysset/notice_set/msg_tpl',
  96. },
  97. ],
  98. },
  99. // 系统配置—三方账号
  100. {
  101. path: '/sysset_acount',
  102. icon: 'usergroup-add',
  103. name: 'acount',
  104. routes: [
  105. //授权配置
  106. {
  107. path: '/sysset_acount/union_login',
  108. name: 'union_login',
  109. component: './sysset/acount/union_login',
  110. },
  111. ],
  112. },
  113. //系统配置—权限管理
  114. {
  115. path: '/sysset_authority',
  116. icon: 'security-scan',
  117. name: 'authority',
  118. routes: [
  119. //权限组
  120. {
  121. path: '/sysset_authority/authority_group',
  122. name: 'authority_group',
  123. component: './sysset/authority/group',
  124. },
  125. //操作员管理
  126. {
  127. path: '/sysset_authority/authority_member',
  128. name: 'authority_member',
  129. component: './sysset/authority/member',
  130. },
  131. //操作日志
  132. {
  133. path: '/sysset_authority/operate_log',
  134. name: 'operate_log',
  135. component: './sysset/authority/operate_log',
  136. },
  137. ],
  138. },
  139. //系统配置-协议管理
  140. {
  141. path: '/sysset_agreement',
  142. icon: 'reconciliation',
  143. name: 'agreement',
  144. routes: [
  145. //协议管理
  146. {
  147. path: '/sysset_agreement/lists',
  148. name: 'lists',
  149. component: './sysset/agreement/lists',
  150. },
  151. //编辑协议
  152. {
  153. path: '/sysset_agreement/lists_to_edit',
  154. name: '',
  155. component: './sysset/agreement/edit',
  156. },
  157. ],
  158. },
  159. //系统配置—物流管理
  160. {
  161. path: '/sysset_express',
  162. icon: 'car',
  163. name: 'express',
  164. routes: [
  165. //物流公司
  166. {
  167. path: '/sysset_express/express_lists',
  168. name: 'express_lists',
  169. component: './sysset/express/express_lists',
  170. },
  171. //物流配置
  172. {
  173. path: '/sysset_express/express',
  174. name: 'express',
  175. component: './sysset/express/express',
  176. },
  177. ],
  178. },
  179. // 会员管理
  180. {
  181. path: '/manage_member',
  182. name: 'member',
  183. icon: 'usergroup-add',
  184. routes: [
  185. //会员列表
  186. {
  187. path: '/manage_member/lists',
  188. name: 'lists',
  189. component: './manage/member/lists',
  190. },
  191. //会员详情
  192. {
  193. path: '/manage_member/lists_to_detail',
  194. name: '',
  195. component: './manage/member/detail',
  196. },
  197. //充值管理
  198. {
  199. path: '/manage_member/recharge',
  200. name: 'recharge',
  201. component: './manage/member/recharge',
  202. },
  203. //资金明细
  204. {
  205. path: '/manage_member/balance_log',
  206. name: 'balance_log',
  207. component: './manage/member/balance_log',
  208. },
  209. //积分设置
  210. {
  211. path: '/manage_member/point_setting',
  212. name: 'point_setting',
  213. component: './manage/member/point_set',
  214. },
  215. ],
  216. },
  217. // 商品管理
  218. {
  219. path: '/manage_product',
  220. icon: 'appstore',
  221. name: 'product',
  222. routes: [
  223. //商品设置
  224. {
  225. path: '/manage_product/goods_setting',
  226. name: 'goods_setting',
  227. component: './manage/product/goods_setting',
  228. },
  229. //商品列表
  230. {
  231. path: '/manage_product/goods_list',
  232. name: 'goods_list',
  233. component: './manage/product/goods_list',
  234. },
  235. //待审核商品_发布商品
  236. {
  237. path: '/manage_product/goods_check_list_to_add',
  238. name: '',
  239. component: './manage/goods/add_goods',
  240. },
  241. //分类管理
  242. {
  243. path: '/manage_product/cate_lists',
  244. name: 'cate_lists',
  245. component: './manage/product/cate_lists',
  246. },
  247. //品牌列表
  248. {
  249. path: '/manage_product/brand',
  250. name: 'brand',
  251. component: './manage/product/brand',
  252. },
  253. //属性管理
  254. {
  255. path: '/manage_product/search_attr',
  256. name: 'search_attr',
  257. component: './manage/product/search_attr',
  258. },
  259. //商品标签
  260. {
  261. path: '/manage_product/goods_label',
  262. name: 'goods_label',
  263. component: './manage/product/goods_label',
  264. },
  265. ],
  266. },
  267. // PC装修
  268. {
  269. path: '/pcdecorate_home',
  270. icon: 'cluster',
  271. name: 'pc_home',
  272. routes: [
  273. // 模板列表
  274. {
  275. path: '/pcdecorate_home/tpl_lists',
  276. name: 'tpl_lists',
  277. component: './pcdecorate/home/tpl_lists',
  278. },
  279. // 实例化模版
  280. {
  281. path: '/pcdecorate_home/instance_template_lists',
  282. name: 'instance_template_lists',
  283. component: './pcdecorate/home/instance_template_lists',
  284. },
  285. // 新增/编辑模版
  286. {
  287. path: '/pcdecorate_home/instance_template_lists_to_add',
  288. name: '',
  289. component: './pcdecorate/home/add_template',
  290. },
  291. // // 测试模板
  292. // {
  293. // path: '/pcdecorate_home/adv_222',
  294. // name: 'adv_222',
  295. // component: './pcdecorate/home/adv_222',
  296. // },
  297. // 首页装修
  298. {
  299. path: '/pcdecorate_home/diy_page_lists',
  300. name: 'diy_page_lists',
  301. component: './pcdecorate/home/diy_page_lists',
  302. },
  303. // 首页设置
  304. {
  305. path: '/pcdecorate_home/home_setting',
  306. name: 'home_setting',
  307. component: './pcdecorate/home/home_setting',
  308. },
  309. // 首页导航
  310. {
  311. path: '/pcdecorate_home/nav',
  312. name: 'nav',
  313. component: './pcdecorate/home/nav',
  314. },
  315. //页脚管理
  316. {
  317. path: '/pcdecorate_home/footer',
  318. name: 'footer',
  319. component: './pcdecorate/home/footer',
  320. },
  321. ],
  322. },
  323. // 专题装修
  324. {
  325. path: '/pcdecorate_topic',
  326. icon: 'tool',
  327. name: 'pc_decorate_topic',
  328. routes: [
  329. // 专题装修
  330. {
  331. path: '/pcdecorate_topic/topic_diy_page_lists',
  332. name: 'topic_diy_page_lists',
  333. component: './pcdecorate/topic/topic_diy_page_lists',
  334. },
  335. ],
  336. },
  337. // 首页装修
  338. {
  339. path: '/decorate_mhome',
  340. icon: 'mobile',
  341. name: 'decorate_mobile_home',
  342. routes: [
  343. // 首页装修
  344. {
  345. path: '/decorate_mhome/lists',
  346. name: 'lists',
  347. component: './mdecorate/lists',
  348. },
  349. // 装修页面
  350. {
  351. path: '/decorate_mhome/lists_to_diy',
  352. name: '',
  353. component: './mdecorate/edit_diy_page',
  354. },
  355. ],
  356. },
  357. // 专题装修
  358. {
  359. path: '/decorate_mtopic',
  360. icon: 'layout',
  361. name: 'decorate_mobile_topic',
  362. routes: [
  363. // 专题装修
  364. {
  365. path: '/decorate_mtopic/topic_lists',
  366. name: 'topic_lists',
  367. component: './mdecorate/topic_lists',
  368. },
  369. // 装修页面
  370. {
  371. path: '/decorate_mtopic/topic_lists_to_diy',
  372. name: '',
  373. component: './mdecorate/edit_diy_page',
  374. },
  375. ],
  376. },
  377. // 分类图片
  378. {
  379. path: '/decorate_mcat',
  380. icon: 'file-image',
  381. name: 'decorate_mobile_cat_img',
  382. routes: [
  383. // 分类图片
  384. {
  385. path: '/decorate_mcat/list',
  386. name: 'lists',
  387. component: './mdecorate/mcat',
  388. },
  389. ],
  390. },
  391. // 发现装修
  392. {
  393. path: '/decorate_information',
  394. icon: 'deployment-unit',
  395. name: 'decorate_mobile_information',
  396. routes: [
  397. // 发现首页
  398. {
  399. path: '/decorate_information/information',
  400. name: 'information',
  401. component: './mdecorate/information',
  402. },
  403. ],
  404. },
  405. // 店铺管理
  406. {
  407. path: '/manage_store',
  408. icon: 'shop',
  409. name: 'store',
  410. routes: [
  411. //自营店铺
  412. {
  413. path: '/manage_store/own_list',
  414. name: 'own_list',
  415. component: './manage/store/own_list',
  416. },
  417. //入驻店铺
  418. {
  419. path: '/manage_store/settle_store_list',
  420. name: 'settle_store_list',
  421. component: './manage/store/settle_store_list',
  422. },
  423. //入驻审核店铺详情
  424. {
  425. path: '/manage_store/settle_store_list_apply_detail',
  426. name: '',
  427. component: './manage/store/apply_store_detail',
  428. },
  429. //店铺入驻信息详情
  430. {
  431. path: '/manage_store/settle_store_list_view',
  432. name: '',
  433. component: './manage/store/settled_store_detail',
  434. },
  435. //编辑店铺入驻信息
  436. {
  437. path: '/manage_store/settle_store_list_to_edit',
  438. name: '',
  439. component: './manage/store/edit_settled_store',
  440. },
  441. //店铺等级
  442. {
  443. path: '/manage_store/grade_list',
  444. name: 'grade_list',
  445. component: './manage/store/grade_list',
  446. },
  447. ],
  448. },
  449. // 订单管理
  450. {
  451. path: '/manage_order',
  452. icon: 'form',
  453. name: 'order',
  454. routes: [
  455. //订单列表
  456. {
  457. path: '/manage_order/order_lists',
  458. name: 'order_lists',
  459. component: './manage/order/order_lists',
  460. },
  461. //订单详情
  462. {
  463. path: '/manage_order/order_lists_to_detail',
  464. name: '',
  465. component: './manage/order/order_detail',
  466. },
  467. //售后管理 pc 和 app 暂时禁用
  468. // {
  469. // path: '/manage_order/aftersales_lists',
  470. // name: 'aftersales_lists',
  471. // component: './manage/order/aftersales_lists',
  472. // },
  473. {
  474. path: '/manage_order/service',
  475. name: 'service',
  476. component: './manage/order/service',
  477. },
  478. //评价管理
  479. {
  480. path: '/manage_order/evaluation',
  481. name: 'evaluation',
  482. component: './manage/order/evaluation',
  483. },
  484. //售后原因
  485. {
  486. path: '/manage_order/salereson_lists',
  487. name: 'salereson_lists',
  488. component: './manage/order/salereson_lists',
  489. },
  490. ],
  491. },
  492. // 促销活动
  493. {
  494. path: '/bussset_promotion',
  495. icon: 'tag',
  496. name: 'promotion',
  497. routes: [
  498. //优惠券
  499. {
  500. path: '/bussset_promotion/coupon',
  501. name: 'coupon',
  502. component: './bussset/promotion/coupon/home',
  503. },
  504. //新建优惠券
  505. {
  506. path: '/bussset_promotion/coupon_to_add',
  507. name: '',
  508. component: './bussset/promotion/coupon/add_coupon',
  509. },
  510. //平台优惠券——查看优惠券
  511. {
  512. path: '/bussset_promotion/coupon_to_view',
  513. name: '',
  514. component: './bussset/promotion/coupon/view_coupon',
  515. },
  516. //平台优惠券——优惠券领取列表
  517. {
  518. path: '/bussset_promotion/coupon_to_receive_list',
  519. name: '',
  520. component: './bussset/promotion/coupon/member_receive_lists',
  521. },
  522. //店铺优惠券
  523. {
  524. path: '/bussset_promotion/store_coupon',
  525. name: 'store_coupon',
  526. component: './bussset/promotion/coupon/store_coupon',
  527. },
  528. //店铺优惠券——查看优惠券
  529. {
  530. path: '/bussset_promotion/store_coupon_to_view',
  531. name: '',
  532. component: './bussset/promotion/coupon/view_coupon',
  533. },
  534. //店铺优惠券——优惠券领取列表
  535. {
  536. path: '/bussset_promotion/store_coupon_to_receive_list',
  537. name: '',
  538. component: './bussset/promotion/coupon/member_receive_lists',
  539. },
  540. //满优惠列表
  541. {
  542. path: '/bussset_promotion/full_discount',
  543. name: 'full_discount',
  544. component: './bussset/promotion/full/discount',
  545. },
  546. //秒杀活动
  547. {
  548. path: '/bussset_promotion/seckill',
  549. name: 'seckill',
  550. component: './bussset/promotion/seckill/lists',
  551. },
  552. //秒杀活动详情——秒杀活动场次
  553. {
  554. path: '/bussset_promotion/seckill_detail',
  555. name: '',
  556. component: './bussset/promotion/seckill/detail',
  557. },
  558. //秒杀活动商品
  559. {
  560. path: '/bussset_promotion/seckill_goods_list',
  561. name: '',
  562. component: './bussset/promotion/seckill/seckill_goods_lists',
  563. },
  564. //拼团活动
  565. {
  566. path: '/bussset_promotion/spell_group',
  567. name: 'spell_group',
  568. component: './bussset/promotion/spell_group/lists',
  569. },
  570. //拼团活动——查看详情
  571. {
  572. path: '/bussset_promotion/spell_group_to_view',
  573. name: '',
  574. component: './bussset/promotion/spell_group/view_spell_group',
  575. },
  576. //拼团活动商品
  577. {
  578. path: '/bussset_promotion/spell_group_bind_goods',
  579. name: '',
  580. component: './bussset/promotion/spell_group/joined_goods_list',
  581. },
  582. //拼团活动订单
  583. {
  584. path: '/bussset_promotion/spell_group_order',
  585. name: '',
  586. component: './bussset/promotion/spell_group/order_lists',
  587. },
  588. //拼团活动订单详情
  589. {
  590. path: '/bussset_promotion/spell_group_order_to_detail',
  591. name: '',
  592. component: './manage/order/order_detail',
  593. },
  594. //拼团团队列表
  595. {
  596. path: '/bussset_promotion/spell_group_team_list',
  597. name: '',
  598. component: './bussset/promotion/spell_group/team_list',
  599. },
  600. //阶梯团活动
  601. {
  602. path: '/bussset_promotion/ladder_group',
  603. name: 'ladder_group',
  604. component: './bussset/promotion/ladder_group/lists',
  605. },
  606. //阶梯团活动——查看详情
  607. {
  608. path: '/bussset_promotion/ladder_group_to_view',
  609. name: '',
  610. component: './bussset/promotion/ladder_group/view_ladder_group',
  611. },
  612. //阶梯团活动——团队列表
  613. {
  614. path: '/bussset_promotion/ladder_group_team_list',
  615. name: '',
  616. component: './bussset/promotion/ladder_group/team_list',
  617. },
  618. //预售活动
  619. {
  620. path: '/bussset_promotion/presale',
  621. name: 'presale',
  622. component: './bussset/promotion/presale/lists',
  623. },
  624. //预售详情
  625. {
  626. path: '/bussset_promotion/presale_to_view',
  627. name: '',
  628. component: './bussset/promotion/presale/view_presale',
  629. },
  630. //预售活动商品
  631. {
  632. path: '/bussset_promotion/presale_goods_list',
  633. name: '',
  634. component: './bussset/promotion/presale/presale_goods_lists',
  635. },
  636. ],
  637. },
  638. // 签到管理
  639. {
  640. path: '/bussset_sign',
  641. icon: 'schedule',
  642. name: 'sign',
  643. routes: [
  644. //签到活动列表
  645. {
  646. path: '/bussset_sign/list',
  647. name: 'list',
  648. component: './bussset/sign/list',
  649. },
  650. //新建签到活动
  651. {
  652. path: '/bussset_sign/list_to_add',
  653. name: '',
  654. component: './bussset/sign/add',
  655. },
  656. //签到统计列表
  657. {
  658. path: '/bussset_sign/stat',
  659. name: 'stat',
  660. component: './bussset/sign/stat',
  661. },
  662. //会员签到统计详情
  663. {
  664. path: '/bussset_sign/stat_to_member_detail',
  665. name: '',
  666. component: './bussset/sign/member_stat_detail',
  667. },
  668. //活动签到详情
  669. {
  670. path: '/bussset_sign/stat_to_activity_detail',
  671. name: '',
  672. component: './bussset/sign/activity_stat_detail',
  673. },
  674. ]
  675. },
  676. // 结算管理
  677. {
  678. path: '/bussset_bill',
  679. icon: 'pay-circle',
  680. name: 'bill',
  681. routes: [
  682. //结算账单
  683. {
  684. path: '/bussset_bill/lists',
  685. name: 'lists',
  686. component: './bussset/bill/lists',
  687. },
  688. //结算账单详情
  689. {
  690. path: '/bussset_bill/lists_to_detail',
  691. name: '',
  692. component: './bussset/bill/detail',
  693. },
  694. ],
  695. },
  696. // 直播
  697. {
  698. path: '/bussset_live',
  699. icon: 'pay-circle',
  700. name: 'live',
  701. routes: [
  702. //直播设置
  703. {
  704. path: '/bussset_live/setting',
  705. name: 'setting',
  706. component: './bussset/live/setting',
  707. },
  708. //标签管理
  709. {
  710. path: '/bussset_live/live_label',
  711. name: 'label',
  712. component: './bussset/live/setting',
  713. },
  714. //主播管理
  715. {
  716. path: '/bussset_live/author_lists',
  717. name: 'author_lists',
  718. component: './bussset/live/setting',
  719. },
  720. //直播管理
  721. {
  722. path: '/bussset_live/live_manage',
  723. name: 'live_manage',
  724. component: './bussset/live/setting',
  725. },
  726. ],
  727. },
  728. // 积分商城
  729. {
  730. path: '/point_m_diy',
  731. icon: 'home',
  732. name: 'point_m_diy',
  733. routes: [
  734. //积分商城——首页装修
  735. {
  736. path: '/point_m_diy/home',
  737. name: 'home',
  738. component: './point/mdiy/home',
  739. },
  740. // 装修页面
  741. {
  742. path: '/point_m_diy/home_to_edit',
  743. name: '',
  744. component: './point/mdiy/edit_diy_page',
  745. },
  746. ]
  747. },
  748. // 积分商城
  749. {
  750. path: '/point_setting',
  751. icon: 'star',
  752. name: 'point_setting',
  753. routes: [
  754. //积分商城——积分设置
  755. {
  756. path: '/point_setting/index',
  757. name: 'index',
  758. component: './point/setting',
  759. },
  760. ]
  761. },
  762. {
  763. path: '/point_label',
  764. icon: 'tag',
  765. name: 'point_label',
  766. routes: [
  767. //积分商城——标签管理
  768. {
  769. path: '/point_label/index',
  770. name: 'index',
  771. component: './point/label',
  772. },
  773. ]
  774. },
  775. {
  776. path: '/point_goods',
  777. icon: 'shopping',
  778. name: 'point_goods',
  779. routes: [
  780. //积分商城——商品管理
  781. {
  782. path: '/point_goods/list',
  783. name: 'list',
  784. component: './point/goods/goods_list',
  785. },
  786. ]
  787. },
  788. {
  789. path: '/point_order',
  790. icon: 'profile',
  791. name: 'point_order',
  792. routes: [
  793. //积分商城——订单管理
  794. {
  795. path: '/point_order/list',
  796. name: 'list',
  797. component: './point/order/order_lists',
  798. },
  799. //积分商城——订单详情
  800. {
  801. path: '/point_order/list_to_detail',
  802. name: '',
  803. component: './point/order/order_detail',
  804. },
  805. ]
  806. },
  807. {
  808. path: '/point_bill',
  809. icon: 'pay-circle',
  810. name: 'point_bill',
  811. routes: [
  812. //积分商城——结算管理
  813. {
  814. path: '/point_bill/list',
  815. name: 'list',
  816. component: './point/bill/lists',
  817. },
  818. //积分商城——结算详情
  819. {
  820. path: '/point_bill/list_to_detail',
  821. name: '',
  822. component: './point/bill/detail',
  823. },
  824. ]
  825. },
  826. {
  827. component: '404',
  828. },
  829. ],
  830. },
  831. ];