pages.json 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711
  1. {
  2. "easycom": {
  3. "^zs-(.*)": "@/components/zs-$1/index.vue",
  4. "^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"
  5. },
  6. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "path": "pages/index/index",
  9. "style": {
  10. "navigationBarTitleText": "慧研学惠生活",
  11. "navigationStyle": "custom"
  12. }
  13. },
  14. {
  15. "path": "pages/index/search",
  16. "style": {
  17. "navigationBarTitleText": "搜索"
  18. }
  19. },
  20. {
  21. "path": "pages/index/searchResult",
  22. "style": {
  23. "navigationBarTitleText": "搜索结果"
  24. }
  25. },
  26. {
  27. "path": "pages/activity/index",
  28. "style": {
  29. "navigationBarTitleText": "活动",
  30. "navigationStyle": "custom",
  31. "enablePullDownRefresh": false
  32. }
  33. },
  34. {
  35. "path": "pages/activity/detail",
  36. "style": {
  37. "navigationStyle": "custom",
  38. "enablePullDownRefresh": false
  39. }
  40. },
  41. {
  42. "path": "pages/activity/courseDetail",
  43. "style": {
  44. "navigationBarTitleText": "课程详情"
  45. }
  46. },
  47. {
  48. "path": "pages/my/index",
  49. "style": {
  50. "navigationStyle": "custom",
  51. "navigationBarTitleText": "我的",
  52. "enablePullDownRefresh": false
  53. // "backgroundColor":"#f1f1f1"
  54. }
  55. }, {
  56. "path": "pages/index/position",
  57. "style": {
  58. "navigationBarTitleText": "",
  59. "enablePullDownRefresh": false
  60. }
  61. }
  62. ],
  63. "subPackages": [ //分包
  64. {
  65. "root": "signUp",
  66. "pages": [
  67. {
  68. "path": "index",
  69. "style": {
  70. "navigationBarTitleText": "体验农耕文化,传承中国传统"
  71. }
  72. },
  73. {
  74. "path": "makeOut",
  75. "style": {
  76. "navigationBarTitleText": "填写资料"
  77. }
  78. }
  79. ]
  80. },
  81. {
  82. "root": "refuel",
  83. "pages": [
  84. {
  85. "path": "index",
  86. "style": {
  87. "navigationBarTitleText": "加油充电",
  88. "enablePullDownRefresh": true
  89. }
  90. },
  91. {
  92. "path": "refuelDetail",
  93. "style": {
  94. "navigationBarTitleText": "确认下单"
  95. // "navigationStyle": "custom"
  96. }
  97. },
  98. {
  99. "path": "coupon",
  100. "style": {
  101. "navigationBarTitleText": "优惠券"
  102. // "navigationStyle": "custom"
  103. }
  104. }
  105. ]
  106. },
  107. {
  108. "root": "detail",
  109. "pages": [
  110. {
  111. "path": "shopDetail/shopDetail",
  112. "style": {
  113. "navigationBarTitleText": "店铺详情"
  114. // "navigationStyle": "custom",
  115. // "enablePullDownRefresh": true
  116. }
  117. },
  118. {
  119. "path": "discountsDetail/index",
  120. "style": {
  121. "navigationBarTitleText": "",
  122. "enablePullDownRefresh": true
  123. }
  124. },
  125. {
  126. "path": "goodsDetail/index",
  127. "style": {
  128. "navigationBarTitleText": "商品详情",
  129. "enablePullDownRefresh": true
  130. }
  131. },
  132. {
  133. "path": "shopList/index",
  134. "style": {
  135. "navigationBarTitleText": "适用店铺"
  136. }
  137. },
  138. {
  139. "path": "qrcode/index",
  140. "style": {
  141. "navigationBarTitleText": "出示二维码"
  142. }
  143. },
  144. {
  145. "path": "virtualGoods/index",
  146. "style": {
  147. "navigationBarTitleText": "会员充值"
  148. }
  149. },
  150. {
  151. "path": "virtualGoods/pay",
  152. "style": {
  153. "navigationBarTitleText": "提交订单"
  154. }
  155. }
  156. ]
  157. },
  158. {
  159. "root": "my",
  160. "pages": [{
  161. "path": "coupon/index",
  162. "style": {
  163. "navigationBarTitleText": "我的优惠券",
  164. "enablePullDownRefresh": true
  165. }
  166. },
  167. {
  168. "path": "edit/edit",
  169. "style": {
  170. "navigationBarTitleText": "账号设置"
  171. }
  172. },
  173. {
  174. "path": "edit/editName",
  175. "style": {
  176. "navigationBarTitleText": "账号设置"
  177. }
  178. },
  179. {
  180. "path": "edit/unSubscribe",
  181. "style": {
  182. "navigationBarTitleText": "账号信息"
  183. }
  184. },
  185. {
  186. "path": "order/index",
  187. "style": {
  188. "navigationBarTitleText": "全部订单",
  189. "enablePullDownRefresh": true
  190. }
  191. },
  192. {
  193. "path": "order/detail",
  194. "style": {
  195. "navigationBarTitleText": "订单详情"
  196. }
  197. },
  198. {
  199. "path": "order/refund",
  200. "style": {
  201. "navigationBarTitleText": "退款申请"
  202. }
  203. },
  204. {
  205. "path": "order/refundDetail",
  206. "style": {
  207. "navigationBarTitleText": "退款详情"
  208. }
  209. },
  210. {
  211. "path": "order/signUp/signUpDetail",//活动订单
  212. "style": {
  213. "navigationBarTitleText": "订单详情"
  214. // "navigationStyle": "custom"
  215. }
  216. },
  217. {
  218. "path": "order/signUp/refund",
  219. "style": {
  220. "navigationBarTitleText": "退款申请"
  221. }
  222. },
  223. {
  224. "path": "order/signUp/refundDetail",
  225. "style": {
  226. "navigationBarTitleText": "退款详情"
  227. }
  228. },
  229. {
  230. "path": "order/scenic/detail",
  231. "style": {
  232. "navigationBarTitleText": "订单详情"
  233. }
  234. },
  235. {
  236. "path": "order/scenic/refund",
  237. "style": {
  238. "navigationBarTitleText": "退款申请"
  239. }
  240. },
  241. {
  242. "path": "order/scenic/refundDetail",
  243. "style": {
  244. "navigationBarTitleText": "退款详情"
  245. }
  246. },
  247. {
  248. "path": "order/hotel/detail",
  249. "style": {
  250. "navigationBarTitleText": "订单详情"
  251. }
  252. },
  253. {
  254. "path": "order/movie/detail",
  255. "style": {
  256. "navigationBarTitleText": "订单详情"
  257. }
  258. },
  259. {
  260. "path": "order/webView",
  261. "style": {
  262. "navigationBarTitleText": "退款申请"
  263. }
  264. },
  265. {
  266. "path": "favorite/index",
  267. "style": {
  268. "navigationBarTitleText": "我的收藏"
  269. }
  270. },
  271. {
  272. "path": "memberCenter/index",
  273. "style": {
  274. "navigationBarTitleText": "会员中心",
  275. "navigationStyle": "custom"
  276. }
  277. },
  278. {
  279. "path": "service/index",
  280. "style": {
  281. "navigationBarTitleText": "客服"
  282. }
  283. }
  284. ]
  285. },
  286. {
  287. "root": "invite",
  288. "pages": [
  289. {
  290. "path": "invite",
  291. "style": {
  292. "navigationBarTitleText": "推广邀请"
  293. }
  294. },
  295. {
  296. "path": "index",
  297. "style": {
  298. "navigationBarTitleText": "推广邀请"
  299. }
  300. },
  301. {
  302. "path": "history",
  303. "style": {
  304. "navigationBarTitleText": "邀请记录"
  305. }
  306. },
  307. {
  308. "path": "detail",
  309. "style": {
  310. "navigationBarTitleText": "邀请明细"
  311. }
  312. },
  313. {
  314. "path": "wallet/index",
  315. "style": {
  316. "navigationBarTitleText": "我的钱包"
  317. }
  318. },
  319. {
  320. "path": "wallet/history",
  321. "style": {
  322. "navigationBarTitleText": "提现记录"
  323. }
  324. },
  325. {
  326. "path":"wallet/withdraw",
  327. "style": {
  328. "navigationBarTitleText": "提现"
  329. }
  330. },
  331. {
  332. "path":"wallet/hangingAmount",
  333. "style": {
  334. "navigationBarTitleText": "即将到账"
  335. }
  336. }
  337. ]
  338. },
  339. {
  340. "root": "login",
  341. "pages": [{
  342. "path": "login/login",
  343. "style": {
  344. "navigationBarTitleText": "慧研学惠生活"
  345. }
  346. },
  347. {
  348. "path": "login/otherLogin",
  349. "style": {
  350. "navigationBarTitleText": "手机号登录"
  351. }
  352. },
  353. {
  354. "path": "login/bind",
  355. "style": {
  356. "navigationBarTitleText": "绑定微信"
  357. }
  358. },
  359. {
  360. "path": "login/xieyi",
  361. "style": {
  362. "navigationBarTitleText": "隐私协议"
  363. }
  364. }
  365. ]
  366. },
  367. {
  368. "root": "trip", //出行
  369. "pages": [
  370. {
  371. "path": "index/index",
  372. "style": {
  373. "navigationBarTitleText": "出行",
  374. "navigationStyle": "custom",
  375. "disableScroll": true
  376. }
  377. },
  378. {
  379. "path": "chooseAddress/index",
  380. "style": {
  381. "navigationBarTitleText": "地址选择"
  382. }
  383. },
  384. {
  385. "path": "expense/index",
  386. "style": {
  387. "navigationBarTitleText": "预估费用",
  388. "disableScroll": true
  389. }
  390. }
  391. ]
  392. },
  393. {
  394. "root": "scenic",
  395. "pages": [
  396. {
  397. "path": "index",
  398. "style": {
  399. "navigationBarTitleText": "景区门票",
  400. "navigationStyle": "custom"
  401. }
  402. },
  403. {
  404. "path": "search",
  405. "style": {
  406. "navigationBarTitleText": "搜索中"
  407. }
  408. },
  409. {
  410. "path": "detail",
  411. "style": {
  412. "navigationBarTitleText": "",
  413. "navigationStyle": "custom"
  414. }
  415. },
  416. {
  417. "path": "makeOut",
  418. "style": {
  419. "navigationBarTitleText": "填写订单"
  420. }
  421. }
  422. ]
  423. },
  424. {
  425. "root": "movie",
  426. "pages": [
  427. {
  428. "path": "index",
  429. "style": {
  430. "navigationStyle": "custom",
  431. "enablePullDownRefresh": true
  432. }
  433. },
  434. {
  435. "path": "movieDetail",
  436. "style": {
  437. "navigationBarTitleText": "电影"
  438. }
  439. },
  440. {
  441. "path": "movieList",
  442. "style": {
  443. "navigationBarTitleText": "电影列表"
  444. }
  445. },
  446. {
  447. "path": "chooseSeat",
  448. "style": {
  449. "navigationBarTitleText": "选座",
  450. "enablePullDownRefresh": true
  451. }
  452. }
  453. ]
  454. },
  455. {
  456. "root": "hotel",
  457. "pages": [
  458. {
  459. "path": "index",
  460. "style": {
  461. "navigationStyle": "custom"
  462. }
  463. },
  464. {
  465. "path": "cityList",
  466. "style": {
  467. "navigationBarTitleText": "城市列表"
  468. }
  469. },
  470. {
  471. "path": "hotelDetail",
  472. "style": {
  473. "navigationStyle": "custom"
  474. }
  475. },
  476. {
  477. "path": "introduce",
  478. "style": {
  479. "navigationBarTitleText": "酒店介绍"
  480. }
  481. },
  482. {
  483. "path": "hotelImgList",
  484. "style": {
  485. "navigationBarTitleText": "酒店图片"
  486. }
  487. },
  488. {
  489. "path": "makeOut",
  490. "style": {
  491. "navigationBarTitleText": "填写订单"
  492. }
  493. },
  494. {
  495. "path": "search",
  496. "style": {
  497. "navigationBarTitleText": "酒店"
  498. }
  499. }
  500. ]
  501. },
  502. {
  503. "root": "study", //研学
  504. "pages": [
  505. {
  506. "path": "index",
  507. "style": {
  508. "navigationBarTitleText": "慧研学",
  509. "navigationStyle": "custom"
  510. }
  511. },
  512. {
  513. "path" : "pay/order",
  514. "style": {
  515. "navigationBarTitleText": "提交订单"
  516. }
  517. },
  518. {
  519. "path" : "pay/orderPay",
  520. "style": {
  521. "navigationBarTitleText": "订单详情"
  522. }
  523. },
  524. {
  525. "path":"tourList/list",
  526. "style": {
  527. "navigationBarTitleText": "选择出游人"
  528. }
  529. },
  530. {
  531. "path":"tourList/add",
  532. "style": {
  533. "navigationBarTitleText": "添加出游人"
  534. }
  535. },
  536. {
  537. "path": "type",
  538. "style": {
  539. "navigationBarTitleText": "子栏目",
  540. "navigationStyle": "custom"
  541. }
  542. },
  543. {
  544. "path": "studyGoodsDetail",
  545. "style": {
  546. "navigationBarTitleText": "商品详情"
  547. }
  548. },
  549. {
  550. "path": "studyList",//列表
  551. "style": {
  552. "navigationBarTitleText": ""
  553. }
  554. },
  555. {
  556. "path": "courseDetail",
  557. "style": {
  558. "navigationBarTitleText": "课程详情"
  559. }
  560. },
  561. {
  562. "path": "community/index",
  563. "style": {
  564. "navigationBarTitleText": "互动社区"
  565. }
  566. },
  567. {
  568. "path": "community/detail",
  569. "style": {
  570. "navigationBarTitleText": "帖子详情",
  571. "navigationStyle": "custom"
  572. }
  573. },
  574. {
  575. "path": "community/video",
  576. "style": {
  577. "navigationBarTitleText": "科普视频"
  578. }
  579. },
  580. {
  581. "path": "community/goods",
  582. "style": {
  583. "navigationBarTitleText": "推荐线路"
  584. }
  585. },
  586. {
  587. "path": "test",
  588. "style": {
  589. "navigationBarTitleText": "研学MBTI测试",
  590. "navigationStyle": "custom"
  591. }
  592. }
  593. ]
  594. },
  595. {
  596. "root": "special", //信息确认
  597. "pages": [
  598. {
  599. "path": "water",
  600. "style": {
  601. "navigationBarTitleText": "领券"
  602. }
  603. }
  604. ]
  605. },
  606. {
  607. "root": "pay",
  608. "pages": [
  609. {
  610. "path": "pay",
  611. "style": {
  612. "navigationBarTitleText": "提交订单"
  613. }
  614. },
  615. {
  616. "path": "pay1",
  617. "style": {
  618. "navigationBarTitleText": "提交订单"
  619. }
  620. },
  621. {
  622. "path": "offlinePayment",
  623. "style": {
  624. "navigationBarTitleText": "支付订单"
  625. }
  626. },
  627. {
  628. "path": "coupon",
  629. "style": {
  630. "navigationBarTitleText": "优惠券"
  631. }
  632. },
  633. {
  634. "path": "ortherPay",
  635. "style": {
  636. "navigationBarTitleText": "支付"
  637. }
  638. }
  639. ]
  640. },
  641. {
  642. "root": "agreement",
  643. "pages": [
  644. {
  645. "path": "member",
  646. "style": {
  647. "navigationBarTitleText": "会员服务协议"
  648. }
  649. }
  650. ]
  651. },
  652. {
  653. "root":"share",
  654. "pages":[
  655. {
  656. "path":"index",
  657. "style": {
  658. "navigationBarTitleText": "研学分享"
  659. }
  660. },
  661. {
  662. "path":"sharePosts",
  663. "style": {
  664. "navigationBarTitleText": "研学心得",
  665. "navigationStyle": "custom"
  666. }
  667. }
  668. ]
  669. }
  670. ],
  671. "tabBar": {
  672. "color": "#AAAAAA",
  673. "selectedColor": "#EE4320",
  674. "backgroundColor": "#fff",
  675. "list": [{
  676. "iconPath": "static/home_off.png",
  677. "selectedIconPath": "static/home_on.png",
  678. "text": "首页",
  679. "pagePath": "pages/index/index"
  680. },
  681. {
  682. "iconPath": "static/activity_off.png",
  683. "selectedIconPath": "static/activity_on.png",
  684. "text": "活动",
  685. "pagePath": "pages/activity/index"
  686. },
  687. {
  688. "iconPath": "static/my_off.png",
  689. "selectedIconPath": "static/my_on.png",
  690. "text": "我的",
  691. "pagePath": "pages/my/index"
  692. }
  693. ]
  694. },
  695. "globalStyle": {
  696. "navigationBarTextStyle": "black",
  697. "navigationBarTitleText": "uni-app",
  698. "navigationBarBackgroundColor": "#fff",
  699. "backgroundColor": "#F8F8F8"
  700. },
  701. "uniIdRouter": {}
  702. }