router.config.js 23 KB

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