pages.json 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  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. "enablePullDownRefresh": false
  31. }
  32. },
  33. {
  34. "path": "pages/my/index",
  35. "style": {
  36. "navigationStyle": "custom",
  37. "navigationBarTitleText": "我的",
  38. "enablePullDownRefresh": false
  39. // "backgroundColor":"#f1f1f1"
  40. }
  41. }, {
  42. "path": "pages/index/position",
  43. "style": {
  44. "navigationBarTitleText": "",
  45. "enablePullDownRefresh": false
  46. }
  47. }
  48. ],
  49. "subPackages": [ //分包
  50. {
  51. "root": "signUp",
  52. "pages": [
  53. {
  54. "path": "index",
  55. "style": {
  56. "navigationBarTitleText": "体验农耕文化,传承中国传统"
  57. }
  58. },
  59. {
  60. "path": "makeOut",
  61. "style": {
  62. "navigationBarTitleText": "填写资料"
  63. }
  64. }
  65. ]
  66. },
  67. {
  68. "root": "refuel",
  69. "pages": [
  70. {
  71. "path": "index",
  72. "style": {
  73. "navigationBarTitleText": "加油充电",
  74. "enablePullDownRefresh": true
  75. }
  76. },
  77. {
  78. "path": "refuelDetail",
  79. "style": {
  80. "navigationBarTitleText": "确认下单"
  81. // "navigationStyle": "custom"
  82. }
  83. },
  84. {
  85. "path": "coupon",
  86. "style": {
  87. "navigationBarTitleText": "优惠券"
  88. // "navigationStyle": "custom"
  89. }
  90. }
  91. ]
  92. },
  93. {
  94. "root": "detail",
  95. "pages": [
  96. {
  97. "path": "shopDetail/shopDetail",
  98. "style": {
  99. "navigationBarTitleText": "店铺详情"
  100. // "navigationStyle": "custom",
  101. // "enablePullDownRefresh": true
  102. }
  103. },
  104. {
  105. "path": "discountsDetail/index",
  106. "style": {
  107. "navigationBarTitleText": "",
  108. "enablePullDownRefresh": true
  109. }
  110. },
  111. {
  112. "path": "goodsDetail/index",
  113. "style": {
  114. "navigationBarTitleText": "商品详情",
  115. "enablePullDownRefresh": true
  116. }
  117. },
  118. {
  119. "path": "shopList/index",
  120. "style": {
  121. "navigationBarTitleText": "适用店铺"
  122. }
  123. },
  124. {
  125. "path": "qrcode/index",
  126. "style": {
  127. "navigationBarTitleText": "出示二维码"
  128. }
  129. },
  130. {
  131. "path": "virtualGoods/index",
  132. "style": {
  133. "navigationBarTitleText": "会员充值"
  134. }
  135. },
  136. {
  137. "path": "virtualGoods/pay",
  138. "style": {
  139. "navigationBarTitleText": "提交订单"
  140. }
  141. }
  142. ]
  143. },
  144. {
  145. "root": "my",
  146. "pages": [{
  147. "path": "coupon/index",
  148. "style": {
  149. "navigationBarTitleText": "我的优惠券",
  150. "enablePullDownRefresh": true
  151. }
  152. },
  153. {
  154. "path": "edit/edit",
  155. "style": {
  156. "navigationBarTitleText": "账号设置"
  157. }
  158. },
  159. {
  160. "path": "edit/editName",
  161. "style": {
  162. "navigationBarTitleText": "账号设置"
  163. }
  164. },
  165. {
  166. "path": "edit/unSubscribe",
  167. "style": {
  168. "navigationBarTitleText": "账号信息"
  169. }
  170. },
  171. {
  172. "path": "order/index",
  173. "style": {
  174. "navigationBarTitleText": "全部订单",
  175. "enablePullDownRefresh": true
  176. }
  177. },
  178. {
  179. "path": "order/detail",
  180. "style": {
  181. "navigationBarTitleText": "订单详情"
  182. }
  183. },
  184. {
  185. "path": "order/refund",
  186. "style": {
  187. "navigationBarTitleText": "退款申请"
  188. }
  189. },
  190. {
  191. "path": "order/refundDetail",
  192. "style": {
  193. "navigationBarTitleText": "退款详情"
  194. }
  195. },
  196. {
  197. "path": "order/signUp/signUpDetail",//活动订单
  198. "style": {
  199. "navigationBarTitleText": "订单详情"
  200. // "navigationStyle": "custom"
  201. }
  202. },
  203. {
  204. "path": "order/signUp/refund",
  205. "style": {
  206. "navigationBarTitleText": "退款申请"
  207. }
  208. },
  209. {
  210. "path": "order/signUp/refundDetail",
  211. "style": {
  212. "navigationBarTitleText": "退款详情"
  213. }
  214. },
  215. {
  216. "path": "order/scenic/detail",
  217. "style": {
  218. "navigationBarTitleText": "订单详情"
  219. }
  220. },
  221. {
  222. "path": "order/scenic/refund",
  223. "style": {
  224. "navigationBarTitleText": "退款申请"
  225. }
  226. },
  227. {
  228. "path": "order/scenic/refundDetail",
  229. "style": {
  230. "navigationBarTitleText": "退款详情"
  231. }
  232. },
  233. {
  234. "path": "order/hotel/detail",
  235. "style": {
  236. "navigationBarTitleText": "订单详情"
  237. }
  238. },
  239. {
  240. "path": "order/movie/detail",
  241. "style": {
  242. "navigationBarTitleText": "订单详情"
  243. }
  244. },
  245. {
  246. "path": "order/webView",
  247. "style": {
  248. "navigationBarTitleText": "退款申请"
  249. }
  250. },
  251. {
  252. "path": "favorite/index",
  253. "style": {
  254. "navigationBarTitleText": "我的收藏"
  255. }
  256. },
  257. {
  258. "path": "memberCenter/index",
  259. "style": {
  260. "navigationBarTitleText": "会员中心",
  261. "navigationStyle": "custom"
  262. }
  263. },
  264. {
  265. "path": "service/index",
  266. "style": {
  267. "navigationBarTitleText": "客服"
  268. }
  269. }
  270. ]
  271. },
  272. {
  273. "root": "invite",
  274. "pages": [
  275. {
  276. "path": "index",
  277. "style": {
  278. "navigationBarTitleText": "邀请收益"
  279. }
  280. },
  281. {
  282. "path": "invite",
  283. "style": {
  284. "navigationBarTitleText": "我的邀请码",
  285. "disableScroll": true
  286. }
  287. },
  288. {
  289. "path": "withdraw",
  290. "style": {
  291. "navigationBarTitleText": "提现"
  292. }
  293. },
  294. {
  295. "path": "bankCard",
  296. "style": {
  297. "navigationBarTitleText": "银行卡"
  298. }
  299. }
  300. ]
  301. },
  302. {
  303. "root": "login",
  304. "pages": [{
  305. "path": "login/login",
  306. "style": {
  307. "navigationBarTitleText": "慧研学惠生活"
  308. }
  309. },
  310. {
  311. "path": "login/otherLogin",
  312. "style": {
  313. "navigationBarTitleText": "手机号登录"
  314. }
  315. },
  316. {
  317. "path": "login/xieyi",
  318. "style": {
  319. "navigationBarTitleText": "隐私协议"
  320. }
  321. }
  322. ]
  323. },
  324. {
  325. "root": "trip", //出行
  326. "pages": [
  327. {
  328. "path": "index/index",
  329. "style": {
  330. "navigationBarTitleText": "出行",
  331. "disableScroll": true
  332. }
  333. },
  334. {
  335. "path": "chooseAddress/index",
  336. "style": {
  337. "navigationBarTitleText": "地址选择"
  338. }
  339. },
  340. {
  341. "path": "expense/index",
  342. "style": {
  343. "navigationBarTitleText": "预估费用",
  344. "disableScroll": true
  345. }
  346. }
  347. ]
  348. },
  349. {
  350. "root": "scenic",
  351. "pages": [
  352. {
  353. "path": "index",
  354. "style": {
  355. "navigationBarTitleText": "景区门票",
  356. "navigationStyle": "custom"
  357. }
  358. },
  359. {
  360. "path": "search",
  361. "style": {
  362. "navigationBarTitleText": "搜索中"
  363. }
  364. },
  365. {
  366. "path": "detail",
  367. "style": {
  368. "navigationBarTitleText": "",
  369. "navigationStyle": "custom"
  370. }
  371. },
  372. {
  373. "path": "makeOut",
  374. "style": {
  375. "navigationBarTitleText": "填写订单"
  376. }
  377. }
  378. ]
  379. },
  380. {
  381. "root": "movie",
  382. "pages": [
  383. {
  384. "path": "index",
  385. "style": {
  386. "navigationStyle": "custom",
  387. "enablePullDownRefresh": true
  388. }
  389. },
  390. {
  391. "path": "movieDetail",
  392. "style": {
  393. "navigationBarTitleText": "电影"
  394. }
  395. },
  396. {
  397. "path": "movieList",
  398. "style": {
  399. "navigationBarTitleText": "电影列表"
  400. }
  401. },
  402. {
  403. "path": "chooseSeat",
  404. "style": {
  405. "navigationBarTitleText": "选座",
  406. "enablePullDownRefresh": true
  407. }
  408. }
  409. ]
  410. },
  411. {
  412. "root": "hotel",
  413. "pages": [
  414. {
  415. "path": "index",
  416. "style": {
  417. "navigationStyle": "custom"
  418. }
  419. },
  420. {
  421. "path": "hotelDetail",
  422. "style": {
  423. "navigationStyle": "custom"
  424. }
  425. },
  426. {
  427. "path": "introduce",
  428. "style": {
  429. "navigationBarTitleText": "酒店介绍"
  430. }
  431. },
  432. {
  433. "path": "hotelImgList",
  434. "style": {
  435. "navigationBarTitleText": "酒店图片"
  436. }
  437. },
  438. {
  439. "path": "makeOut",
  440. "style": {
  441. "navigationBarTitleText": "填写订单"
  442. }
  443. },
  444. {
  445. "path": "search",
  446. "style": {
  447. "navigationBarTitleText": "酒店"
  448. }
  449. }
  450. ]
  451. },
  452. {
  453. "root": "study", //研学
  454. "pages": [{
  455. "path": "index",
  456. "style": {
  457. "navigationBarTitleText": "慧研学"
  458. }
  459. },
  460. {
  461. "path": "type",
  462. "style": {
  463. "navigationBarTitleText": "子栏目",
  464. "navigationStyle": "custom"
  465. }
  466. },
  467. {
  468. "path": "studyGoodsDetail",
  469. "style": {
  470. "navigationBarTitleText": "商品详情"
  471. }
  472. },
  473. {
  474. "path": "studyList",//列表
  475. "style": {
  476. "navigationBarTitleText": ""
  477. }
  478. },
  479. {
  480. "path": "courseDetail",
  481. "style": {
  482. "navigationBarTitleText": "课程详情"
  483. }
  484. },
  485. {
  486. "path": "community/index",
  487. "style": {
  488. "navigationBarTitleText": "互动社区"
  489. }
  490. },
  491. {
  492. "path": "community/detail",
  493. "style": {
  494. "navigationBarTitleText": "帖子详情",
  495. "navigationStyle": "custom"
  496. }
  497. },
  498. {
  499. "path": "test",
  500. "style": {
  501. "navigationBarTitleText": "研学MBTI测试",
  502. "navigationStyle": "custom"
  503. }
  504. }
  505. ]
  506. },
  507. {
  508. "root": "special", //信息确认
  509. "pages": [
  510. {
  511. "path": "water",
  512. "style": {
  513. "navigationBarTitleText": "领券"
  514. }
  515. }
  516. ]
  517. },
  518. {
  519. "root": "pay",
  520. "pages": [
  521. {
  522. "path": "pay",
  523. "style": {
  524. "navigationBarTitleText": "提交订单"
  525. }
  526. },
  527. {
  528. "path": "pay1",
  529. "style": {
  530. "navigationBarTitleText": "提交订单"
  531. }
  532. },
  533. {
  534. "path": "offlinePayment",
  535. "style": {
  536. "navigationBarTitleText": "支付订单"
  537. }
  538. },
  539. {
  540. "path": "coupon",
  541. "style": {
  542. "navigationBarTitleText": "优惠券"
  543. }
  544. },
  545. {
  546. "path": "ortherPay",
  547. "style": {
  548. "navigationBarTitleText": "支付"
  549. }
  550. }
  551. ]
  552. },
  553. {
  554. "root": "agreement",
  555. "pages": [
  556. {
  557. "path": "member",
  558. "style": {
  559. "navigationBarTitleText": "会员服务协议"
  560. }
  561. }
  562. ]
  563. }
  564. ],
  565. "tabBar": {
  566. "color": "#AAAAAA",
  567. "selectedColor": "#EE4320",
  568. "backgroundColor": "#fff",
  569. "list": [{
  570. "iconPath": "static/home_off.png",
  571. "selectedIconPath": "static/home_on.png",
  572. "text": "首页",
  573. "pagePath": "pages/index/index"
  574. },
  575. {
  576. "iconPath": "static/activity_off.png",
  577. "selectedIconPath": "static/activity_on.png",
  578. "text": "活动",
  579. "pagePath": "pages/activity/index"
  580. },
  581. {
  582. "iconPath": "static/my_off.png",
  583. "selectedIconPath": "static/my_on.png",
  584. "text": "我的",
  585. "pagePath": "pages/my/index"
  586. }
  587. ]
  588. },
  589. "globalStyle": {
  590. "navigationBarTextStyle": "black",
  591. "navigationBarTitleText": "uni-app",
  592. "navigationBarBackgroundColor": "#fff",
  593. "backgroundColor": "#F8F8F8"
  594. },
  595. "uniIdRouter": {}
  596. }