pages.json 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页"
  7. }
  8. },
  9. {
  10. "path": "pages/index/child-index",
  11. "style": {
  12. "navigationBarTitleText": "首页"
  13. }
  14. },
  15. {
  16. "path": "pages/index/parent-index",
  17. "style": {
  18. "navigationBarTitleText": "首页",
  19. "enablePullDownRefresh": true
  20. }
  21. },
  22. {
  23. "path": "pages/mind/index",
  24. "style": {
  25. "navigationBarTitleText": "心"
  26. }
  27. },
  28. {
  29. "path": "pages/body/index",
  30. "style": {
  31. "navigationBarTitleText": "身"
  32. }
  33. },
  34. {
  35. "path": "pages/wisdom/index",
  36. "style": {
  37. "navigationBarTitleText": "智"
  38. }
  39. },
  40. {
  41. "path": "pages/wealth/index",
  42. "style": {
  43. "navigationBarTitleText": "富"
  44. }
  45. },
  46. {
  47. "path": "pages/profile/index",
  48. "style": {
  49. "navigationBarTitleText": "我的"
  50. }
  51. },
  52. {
  53. "path": "pages/profile/profile",
  54. "style": {
  55. "navigationBarTitleText": "我的"
  56. }
  57. },
  58. {
  59. "path": "pages/login/login",
  60. "style": {
  61. "navigationBarTitleText": "登录",
  62. "navigationStyle": "custom"
  63. }
  64. },
  65. {
  66. "path": "pages/policy/agreement",
  67. "style": {
  68. "navigationBarTitleText": "用户协议"
  69. }
  70. },
  71. {
  72. "path": "pages/policy/privacy",
  73. "style": {
  74. "navigationBarTitleText": "隐私政策"
  75. }
  76. },
  77. {
  78. "path": "pages/user-edit/user-edit",
  79. "style": {
  80. "navigationBarTitleText": "完善信息"
  81. }
  82. },
  83. {
  84. "path": "pages/discover/index",
  85. "style": {
  86. "navigationBarTitleText": "发现"
  87. }
  88. },
  89. {
  90. "path": "pages/action/index",
  91. "style": {
  92. "navigationBarTitleText": "行动"
  93. }
  94. },
  95. {
  96. "path": "pages/index/member-home-detail",
  97. "style": {
  98. "navigationBarTitleText": "成员详情",
  99. "navigationStyle": "custom"
  100. }
  101. },
  102. {
  103. "path": "pages/member-detail/member-detail",
  104. "style": {
  105. "navigationBarTitleText": "成员详情",
  106. "navigationStyle": "custom"
  107. }
  108. },
  109. {
  110. "path": "pages/profile/create-child",
  111. "style": {
  112. "navigationBarTitleText": "添加孩子"
  113. }
  114. },
  115. {
  116. "path": "pages/profile/children",
  117. "style": {
  118. "navigationBarTitleText": "孩子管理"
  119. }
  120. },
  121. {
  122. "path": "pages/profile/edit-child",
  123. "style": {
  124. "navigationBarTitleText": "编辑孩子"
  125. }
  126. },
  127. {
  128. "path": "pages/profile/family-members",
  129. "style": {
  130. "navigationBarTitleText": "家庭成员"
  131. }
  132. },
  133. {
  134. "path": "pages/profile/onboarding",
  135. "style": {
  136. "navigationBarTitleText": "新手任务"
  137. }
  138. },
  139. {
  140. "path": "pages/profile/coupons",
  141. "style": {
  142. "navigationBarTitleText": "我的优惠券"
  143. }
  144. },
  145. {
  146. "path": "pages/mind/articles",
  147. "style": {
  148. "navigationBarTitleText": "心智成长",
  149. "navigationStyle": "custom"
  150. }
  151. },
  152. {
  153. "path": "pages/tianpan/index",
  154. "style": {
  155. "navigationBarTitleText": "家庭天盘",
  156. "navigationStyle": "custom"
  157. }
  158. },
  159. {
  160. "path": "pages/tianpan/member-detail",
  161. "style": {
  162. "navigationBarTitleText": "成员详情",
  163. "navigationStyle": "custom"
  164. }
  165. },
  166. {
  167. "path": "pages/tianpan/relation-detail",
  168. "style": {
  169. "navigationBarTitleText": "关系详情",
  170. "navigationStyle": "custom"
  171. }
  172. },
  173. {
  174. "path": "pages/tianpan/annual-energy",
  175. "style": {
  176. "navigationBarTitleText": "年度能量",
  177. "navigationStyle": "custom"
  178. }
  179. },
  180. {
  181. "path": "pages/tianpan/daily-fortune",
  182. "style": {
  183. "navigationBarTitleText": "每日运势",
  184. "navigationStyle": "custom"
  185. }
  186. },
  187. {
  188. "path": "pages/tianpan/related-items",
  189. "style": {
  190. "navigationBarTitleText": "相关事项",
  191. "navigationStyle": "custom"
  192. }
  193. }
  194. ],
  195. "subPackages": [
  196. {
  197. "root": "pages/teacher",
  198. "pages": [
  199. {
  200. "path": "index",
  201. "style": {
  202. "navigationBarTitleText": "成长规划师中心"
  203. }
  204. },
  205. {
  206. "path": "families",
  207. "style": {
  208. "navigationBarTitleText": "我的家庭"
  209. }
  210. },
  211. {
  212. "path": "team",
  213. "style": {
  214. "navigationBarTitleText": "我的团队"
  215. }
  216. },
  217. {
  218. "path": "messages",
  219. "style": {
  220. "navigationBarTitleText": "消息中心"
  221. }
  222. },
  223. {
  224. "path": "orders",
  225. "style": {
  226. "navigationBarTitleText": "订单与佣金"
  227. }
  228. },
  229. {
  230. "path": "chat",
  231. "style": {
  232. "navigationBarTitleText": "聊天"
  233. }
  234. },
  235. {
  236. "path": "teacher-profile",
  237. "style": {
  238. "navigationBarTitleText": "我的"
  239. }
  240. }
  241. ]
  242. },
  243. {
  244. "root": "pages/guide",
  245. "pages": [
  246. {
  247. "path": "packages/index",
  248. "style": {
  249. "navigationBarTitleText": "我的任务模板"
  250. }
  251. },
  252. {
  253. "path": "packages/create",
  254. "style": {
  255. "navigationBarTitleText": "创建任务模板"
  256. }
  257. },
  258. {
  259. "path": "packages/detail",
  260. "style": {
  261. "navigationBarTitleText": "任务模板详情"
  262. }
  263. },
  264. {
  265. "path": "packages/share",
  266. "style": {
  267. "navigationBarTitleText": "分享任务模板"
  268. }
  269. },
  270. {
  271. "path": "bind/invite",
  272. "style": {
  273. "navigationBarTitleText": "绑定成长规划师"
  274. }
  275. },
  276. {
  277. "path": "register/index",
  278. "style": {
  279. "navigationBarTitleText": "成为成长规划师"
  280. }
  281. },
  282. {
  283. "path": "invite/share",
  284. "style": {
  285. "navigationBarTitleText": "邀请分享"
  286. }
  287. },
  288. {
  289. "path": "hierarchy/index",
  290. "style": {
  291. "navigationBarTitleText": "下级成长规划师"
  292. }
  293. },
  294. {
  295. "path": "activities/index",
  296. "style": {
  297. "navigationBarTitleText": "活动管理"
  298. }
  299. },
  300. {
  301. "path": "activities/detail",
  302. "style": {
  303. "navigationBarTitleText": "活动详情"
  304. }
  305. }
  306. ]
  307. },
  308. {
  309. "root": "pages/parent",
  310. "pages": [
  311. {
  312. "path": "market/index",
  313. "style": {
  314. "navigationBarTitleText": "任务模板市场"
  315. }
  316. },
  317. {
  318. "path": "market/detail",
  319. "style": {
  320. "navigationBarTitleText": "任务模板详情"
  321. }
  322. },
  323. {
  324. "path": "child-detail",
  325. "style": {
  326. "navigationBarTitleText": "孩子详情"
  327. }
  328. }
  329. ]
  330. },
  331. {
  332. "root": "pages/child",
  333. "pages": [
  334. {
  335. "path": "tasks",
  336. "style": {
  337. "navigationBarTitleText": "孩子任务"
  338. }
  339. },
  340. {
  341. "path": "rewards",
  342. "style": {
  343. "navigationBarTitleText": "孩子心愿单"
  344. }
  345. }
  346. ]
  347. },
  348. {
  349. "root": "pages/tasks",
  350. "pages": [
  351. {
  352. "path": "tasks",
  353. "style": {
  354. "navigationBarTitleText": "任务列表"
  355. }
  356. },
  357. {
  358. "path": "create-task",
  359. "style": {
  360. "navigationBarTitleText": "添加任务"
  361. }
  362. },
  363. {
  364. "path": "review",
  365. "style": {
  366. "navigationBarTitleText": "审核任务"
  367. }
  368. },
  369. {
  370. "path": "daily-tasks",
  371. "style": {
  372. "navigationBarTitleText": "每日任务"
  373. }
  374. }
  375. ]
  376. },
  377. {
  378. "root": "pages/wishes",
  379. "pages": [
  380. {
  381. "path": "index",
  382. "style": {
  383. "navigationBarTitleText": "我的心愿"
  384. }
  385. },
  386. {
  387. "path": "create",
  388. "style": {
  389. "navigationBarTitleText": "添加心愿"
  390. }
  391. },
  392. {
  393. "path": "detail",
  394. "style": {
  395. "navigationBarTitleText": "心愿详情"
  396. }
  397. }
  398. ]
  399. },
  400. {
  401. "root": "pages/rewards",
  402. "pages": [
  403. {
  404. "path": "rewards",
  405. "style": {
  406. "navigationBarTitleText": "心愿单"
  407. }
  408. },
  409. {
  410. "path": "badge",
  411. "style": {
  412. "navigationBarTitleText": "勋章墙"
  413. }
  414. }
  415. ]
  416. },
  417. {
  418. "root": "pages/games",
  419. "pages": [
  420. {
  421. "path": "list",
  422. "style": {
  423. "navigationBarTitleText": "小游戏"
  424. }
  425. },
  426. {
  427. "path": "schulte",
  428. "style": {
  429. "navigationBarTitleText": "舒尔特方格"
  430. }
  431. },
  432. {
  433. "path": "1a2b",
  434. "style": {
  435. "navigationBarTitleText": "猜数字"
  436. }
  437. },
  438. {
  439. "path": "sudoku",
  440. "style": {
  441. "navigationBarTitleText": "数独"
  442. }
  443. },
  444. {
  445. "path": "records",
  446. "style": {
  447. "navigationBarTitleText": "训练记录"
  448. }
  449. },
  450. {
  451. "path": "stats",
  452. "style": {
  453. "navigationBarTitleText": "训练统计"
  454. }
  455. }
  456. ]
  457. },
  458. {
  459. "root": "pages/assessment",
  460. "pages": [
  461. {
  462. "path": "apply",
  463. "style": {
  464. "navigationBarTitleText": "申请测评"
  465. }
  466. },
  467. {
  468. "path": "results",
  469. "style": {
  470. "navigationBarTitleText": "测评报告"
  471. }
  472. },
  473. {
  474. "path": "purchase",
  475. "style": {
  476. "navigationBarTitleText": "购买测评"
  477. }
  478. },
  479. {
  480. "path": "quota",
  481. "style": {
  482. "navigationBarTitleText": "我的测评额度"
  483. }
  484. },
  485. {
  486. "path": "upload-report",
  487. "style": {
  488. "navigationBarTitleText": "上传测评报告"
  489. }
  490. }
  491. ]
  492. },
  493. {
  494. "root": "pages/dan-assessment",
  495. "pages": [
  496. {
  497. "path": "report-upload",
  498. "style": {
  499. "navigationBarTitleText": "DAN 报告上传",
  500. "navigationStyle": "custom"
  501. }
  502. }
  503. ]
  504. },
  505. {
  506. "root": "pages/growth",
  507. "pages": [
  508. {
  509. "path": "index",
  510. "style": {
  511. "navigationBarTitleText": "成长档案"
  512. }
  513. },
  514. {
  515. "path": "create",
  516. "style": {
  517. "navigationBarTitleText": "创建成长档案"
  518. }
  519. },
  520. {
  521. "path": "detail",
  522. "style": {
  523. "navigationBarTitleText": "档案详情"
  524. }
  525. },
  526. {
  527. "path": "assessment-result",
  528. "style": {
  529. "navigationBarTitleText": "测评报告"
  530. }
  531. },
  532. {
  533. "path": "upload",
  534. "style": {
  535. "navigationBarTitleText": "上传测评报告"
  536. }
  537. },
  538. {
  539. "path": "supplement",
  540. "style": {
  541. "navigationBarTitleText": "补充测评材料"
  542. }
  543. }
  544. ]
  545. },
  546. {
  547. "root": "pages/shop",
  548. "pages": [
  549. {
  550. "path": "index/index",
  551. "style": {
  552. "navigationBarTitleText": "商品首页"
  553. }
  554. },
  555. {
  556. "path": "order-list/order-list",
  557. "style": {
  558. "navigationBarTitleText": "我的订单"
  559. }
  560. },
  561. {
  562. "path": "order-detail/order-detail",
  563. "style": {
  564. "navigationBarTitleText": "订单详情"
  565. }
  566. },
  567. {
  568. "path": "cart/cart",
  569. "style": {
  570. "navigationBarTitleText": "购物车"
  571. }
  572. },
  573. {
  574. "path": "checkout/checkout",
  575. "style": {
  576. "navigationBarTitleText": "确认订单"
  577. }
  578. },
  579. {
  580. "path": "payment/payment",
  581. "style": {
  582. "navigationBarTitleText": "支付订单"
  583. }
  584. },
  585. {
  586. "path": "logistics/logistics",
  587. "style": {
  588. "navigationBarTitleText": "物流跟踪"
  589. }
  590. },
  591. {
  592. "path": "address/address",
  593. "style": {
  594. "navigationBarTitleText": "收货地址"
  595. }
  596. },
  597. {
  598. "path": "address-edit/address-edit",
  599. "style": {
  600. "navigationBarTitleText": "编辑地址"
  601. }
  602. },
  603. {
  604. "path": "consignee-list/consignee-list",
  605. "style": {
  606. "navigationBarTitleText": "收货人管理"
  607. }
  608. },
  609. {
  610. "path": "consignee-edit/consignee-edit",
  611. "style": {
  612. "navigationBarTitleText": "编辑收货人"
  613. }
  614. },
  615. {
  616. "path": "detail/detail",
  617. "style": {
  618. "navigationBarTitleText": "商品详情"
  619. }
  620. },
  621. {
  622. "path": "after-sales/after-sales",
  623. "style": {
  624. "navigationBarTitleText": "售后记录"
  625. }
  626. },
  627. {
  628. "path": "after-sales-detail/after-sales-detail",
  629. "style": {
  630. "navigationBarTitleText": "售后详情"
  631. }
  632. },
  633. {
  634. "path": "after-sales-apply/after-sales-apply",
  635. "style": {
  636. "navigationBarTitleText": "申请售后"
  637. }
  638. }
  639. ]
  640. },
  641. {
  642. "root": "pages/vendor",
  643. "pages": [
  644. {
  645. "path": "apply",
  646. "style": {
  647. "navigationBarTitleText": "服务商入驻"
  648. }
  649. },
  650. {
  651. "path": "center",
  652. "style": {
  653. "navigationBarTitleText": "服务商中心"
  654. }
  655. },
  656. {
  657. "path": "products/products",
  658. "style": {
  659. "navigationBarTitleText": "商品管理"
  660. }
  661. },
  662. {
  663. "path": "orders/orders",
  664. "style": {
  665. "navigationBarTitleText": "订单管理"
  666. }
  667. },
  668. {
  669. "path": "product-edit/product-edit",
  670. "style": {
  671. "navigationBarTitleText": "发布商品"
  672. }
  673. }
  674. ]
  675. },
  676. {
  677. "root": "pages/nutritionist",
  678. "pages": [
  679. {
  680. "path": "apply",
  681. "style": {
  682. "navigationBarTitleText": "营养师入驻"
  683. }
  684. }
  685. ]
  686. },
  687. {
  688. "root": "pages/butler",
  689. "pages": [
  690. {
  691. "path": "apply",
  692. "style": {
  693. "navigationBarTitleText": "管家入驻"
  694. }
  695. }
  696. ]
  697. },
  698. {
  699. "root": "pages/stats",
  700. "pages": [
  701. {
  702. "path": "completion-rate",
  703. "style": {
  704. "navigationBarTitleText": "任务完成率",
  705. "navigationStyle": "custom"
  706. }
  707. },
  708. {
  709. "path": "index",
  710. "style": {
  711. "navigationBarTitleText": "数据统计"
  712. }
  713. }
  714. ]
  715. },
  716. {
  717. "root": "pages/promotion",
  718. "pages": [
  719. {
  720. "path": "index",
  721. "style": {
  722. "navigationBarTitleText": "财富中心"
  723. }
  724. },
  725. {
  726. "path": "commission",
  727. "style": {
  728. "navigationBarTitleText": "佣金明细"
  729. }
  730. },
  731. {
  732. "path": "withdraw",
  733. "style": {
  734. "navigationBarTitleText": "提现"
  735. }
  736. },
  737. {
  738. "path": "invite",
  739. "style": {
  740. "navigationBarTitleText": "邀请好友"
  741. }
  742. },
  743. {
  744. "path": "team",
  745. "style": {
  746. "navigationBarTitleText": "推广团队"
  747. }
  748. },
  749. {
  750. "path": "leaderboard",
  751. "style": {
  752. "navigationBarTitleText": "推广排行榜",
  753. "enablePullDownRefresh": true
  754. }
  755. },
  756. {
  757. "path": "material",
  758. "style": {
  759. "navigationBarTitleText": "推广素材"
  760. }
  761. }
  762. ]
  763. },
  764. {
  765. "root": "pages/energy",
  766. "pages": [
  767. {
  768. "path": "detail",
  769. "style": {
  770. "navigationBarTitleText": "维度能量详情"
  771. }
  772. }
  773. ]
  774. },
  775. {
  776. "root": "pages/membership",
  777. "pages": [
  778. {
  779. "path": "benefits",
  780. "style": {
  781. "navigationBarTitleText": "我的权益"
  782. }
  783. },
  784. {
  785. "path": "plans",
  786. "style": {
  787. "navigationBarTitleText": "一生一世会员"
  788. }
  789. },
  790. {
  791. "path": "upgrade",
  792. "style": {
  793. "navigationBarTitleText": "开通会员"
  794. }
  795. }
  796. ]
  797. },
  798. {
  799. "root": "pages/points",
  800. "pages": [
  801. {
  802. "path": "mall",
  803. "style": {
  804. "navigationBarTitleText": "积分商城"
  805. }
  806. }
  807. ]
  808. },
  809. {
  810. "root": "pages/wealth-sub",
  811. "pages": [
  812. {
  813. "path": "checkin",
  814. "style": {
  815. "navigationBarTitleText": "财商打卡"
  816. }
  817. },
  818. {
  819. "path": "insurance-list",
  820. "style": {
  821. "navigationBarTitleText": "保单管理"
  822. }
  823. },
  824. {
  825. "path": "insurance-add",
  826. "style": {
  827. "navigationBarTitleText": "新增保单"
  828. }
  829. }
  830. ]
  831. },
  832. {
  833. "root": "pages/meal",
  834. "pages": [
  835. {
  836. "path": "recommend",
  837. "style": {
  838. "navigationBarTitleText": "智能食谱推荐"
  839. }
  840. },
  841. {
  842. "path": "log",
  843. "style": {
  844. "navigationBarTitleText": "饮食记录"
  845. }
  846. },
  847. {
  848. "path": "recipe-detail",
  849. "style": {
  850. "navigationBarTitleText": "食谱详情"
  851. }
  852. },
  853. {
  854. "path": "preference",
  855. "style": {
  856. "navigationBarTitleText": "饮食偏好设置"
  857. }
  858. }
  859. ]
  860. },
  861. {
  862. "root": "pages/health",
  863. "pages": [
  864. {
  865. "path": "report-upload",
  866. "style": {
  867. "navigationBarTitleText": "上传健康报告"
  868. }
  869. },
  870. {
  871. "path": "report-confirm",
  872. "style": {
  873. "navigationBarTitleText": "确认健康报告",
  874. "navigationStyle": "custom"
  875. }
  876. },
  877. {
  878. "path": "report-survey",
  879. "style": {
  880. "navigationBarTitleText": "健康调研问卷"
  881. }
  882. },
  883. {
  884. "path": "report-list",
  885. "style": {
  886. "navigationBarTitleText": "健康报告"
  887. }
  888. },
  889. {
  890. "path": "nutrition-profile",
  891. "style": {
  892. "navigationBarTitleText": "营养档案"
  893. }
  894. },
  895. {
  896. "path": "tongue-index",
  897. "style": {
  898. "navigationBarTitleText": "舌诊分析"
  899. }
  900. },
  901. {
  902. "path": "exercise-index",
  903. "style": {
  904. "navigationBarTitleText": "运动"
  905. }
  906. },
  907. {
  908. "path": "diet-index",
  909. "style": {
  910. "navigationBarTitleText": "饮食"
  911. }
  912. },
  913. {
  914. "path": "sleep-index",
  915. "style": {
  916. "navigationBarTitleText": "作息"
  917. }
  918. },
  919. {
  920. "path": "meditation-index",
  921. "style": {
  922. "navigationBarTitleText": "冥想"
  923. }
  924. },
  925. {
  926. "path": "gut-index",
  927. "style": {
  928. "navigationBarTitleText": "菌群"
  929. }
  930. },
  931. {
  932. "path": "gut-flora-detail",
  933. "style": {
  934. "navigationBarTitleText": "菌群报告详情"
  935. }
  936. },
  937. {
  938. "path": "gut-flora-species-detail",
  939. "style": {
  940. "navigationBarTitleText": "菌群详情"
  941. }
  942. },
  943. {
  944. "path": "gut-flora-foods-detail",
  945. "style": {
  946. "navigationBarTitleText": "饮食推荐"
  947. }
  948. },
  949. {
  950. "path": "gut-flora-risks-detail",
  951. "style": {
  952. "navigationBarTitleText": "疾病风险"
  953. }
  954. }
  955. ]
  956. },
  957. {
  958. "root": "pages/body-detail",
  959. "pages": [
  960. {
  961. "path": "health-report",
  962. "style": {
  963. "navigationBarTitleText": "健康报告详情"
  964. }
  965. },
  966. {
  967. "path": "health-dimensions",
  968. "style": {
  969. "navigationBarTitleText": "健康维度全景"
  970. }
  971. },
  972. {
  973. "path": "checkin",
  974. "style": {
  975. "navigationBarTitleText": "健康打卡"
  976. }
  977. },
  978. {
  979. "path": "dimension-questionnaire",
  980. "style": {
  981. "navigationBarTitleText": "维度问卷"
  982. }
  983. },
  984. {
  985. "path": "dimension-detail",
  986. "style": {
  987. "navigationBarTitleText": "维度详情"
  988. }
  989. },
  990. {
  991. "path": "member-body-detail",
  992. "style": {
  993. "navigationBarTitleText": "身体能量详情",
  994. "navigationStyle": "custom"
  995. }
  996. }
  997. ]
  998. },
  999. {
  1000. "root": "pages/mind-detail",
  1001. "pages": [
  1002. {
  1003. "path": "articles",
  1004. "style": {
  1005. "navigationBarTitleText": "心智成长"
  1006. }
  1007. },
  1008. {
  1009. "path": "article-detail",
  1010. "style": {
  1011. "navigationBarTitleText": "文章详情"
  1012. }
  1013. },
  1014. {
  1015. "path": "training",
  1016. "style": {
  1017. "navigationBarTitleText": "能力训练"
  1018. }
  1019. },
  1020. {
  1021. "path": "emotion-report",
  1022. "style": {
  1023. "navigationBarTitleText": "心理报告"
  1024. }
  1025. },
  1026. {
  1027. "path": "member-mind-detail",
  1028. "style": {
  1029. "navigationBarTitleText": "心智能量详情",
  1030. "navigationStyle": "custom"
  1031. }
  1032. },
  1033. {
  1034. "path": "emotion-checkin",
  1035. "style": {
  1036. "navigationBarTitleText": "情绪打卡"
  1037. }
  1038. },
  1039. {
  1040. "path": "emotion-trend",
  1041. "style": {
  1042. "navigationBarTitleText": "情绪趋势"
  1043. }
  1044. },
  1045. {
  1046. "path": "traditional-mirror",
  1047. "style": {
  1048. "navigationBarTitleText": "传统文化镜"
  1049. }
  1050. },
  1051. {
  1052. "path": "soothe-toolbox",
  1053. "style": {
  1054. "navigationBarTitleText": "疏导工具箱"
  1055. }
  1056. },
  1057. {
  1058. "path": "screening",
  1059. "style": {
  1060. "navigationBarTitleText": "心理状态自评"
  1061. }
  1062. },
  1063. {
  1064. "path": "family-dashboard",
  1065. "style": {
  1066. "navigationBarTitleText": "家庭天盘"
  1067. }
  1068. },
  1069. {
  1070. "path": "duo-compatibility",
  1071. "style": {
  1072. "navigationBarTitleText": "双人合盘"
  1073. }
  1074. }
  1075. ]
  1076. },
  1077. {
  1078. "root": "pages/wisdom-detail",
  1079. "pages": [
  1080. {
  1081. "path": "cognitive-report",
  1082. "style": {
  1083. "navigationBarTitleText": "认知测评报告"
  1084. }
  1085. },
  1086. {
  1087. "path": "member-wisdom-detail",
  1088. "style": {
  1089. "navigationBarTitleText": "智能量详情",
  1090. "navigationStyle": "custom"
  1091. }
  1092. },
  1093. {
  1094. "path": "self-quiz",
  1095. "style": {
  1096. "navigationBarTitleText": "自己出题自己答"
  1097. }
  1098. },
  1099. {
  1100. "path": "training-hub",
  1101. "style": {
  1102. "navigationBarTitleText": "认知训练中心"
  1103. }
  1104. }
  1105. ]
  1106. },
  1107. {
  1108. "root": "pages/action-detail",
  1109. "pages": [
  1110. {
  1111. "path": "interaction-log",
  1112. "style": {
  1113. "navigationBarTitleText": "记录互动"
  1114. }
  1115. },
  1116. {
  1117. "path": "relationship-questionnaire",
  1118. "style": {
  1119. "navigationBarTitleText": "关系问卷"
  1120. }
  1121. },
  1122. {
  1123. "path": "member-action-detail",
  1124. "style": {
  1125. "navigationBarTitleText": "行动能量详情",
  1126. "navigationStyle": "custom"
  1127. }
  1128. },
  1129. {
  1130. "path": "contact-detail",
  1131. "style": {
  1132. "navigationBarTitleText": "联系人详情",
  1133. "navigationStyle": "custom"
  1134. }
  1135. }
  1136. ]
  1137. },
  1138. {
  1139. "root": "pages/discover-detail",
  1140. "pages": [
  1141. {
  1142. "path": "product-detail/product-detail",
  1143. "style": {
  1144. "navigationBarTitleText": "商品详情"
  1145. }
  1146. },
  1147. {
  1148. "path": "activity-detail/activity-detail",
  1149. "style": {
  1150. "navigationBarTitleText": "活动详情"
  1151. }
  1152. }
  1153. ]
  1154. },
  1155. {
  1156. "root": "pages/family",
  1157. "pages": [
  1158. {
  1159. "path": "add-member",
  1160. "style": {
  1161. "navigationBarTitleText": "添加家庭成员"
  1162. }
  1163. }
  1164. ]
  1165. },
  1166. {
  1167. "root": "pages/ai",
  1168. "pages": [
  1169. {
  1170. "path": "chat",
  1171. "style": {
  1172. "navigationBarTitleText": "AI 家庭助手",
  1173. "navigationStyle": "custom"
  1174. }
  1175. }
  1176. ]
  1177. },
  1178. {
  1179. "root": "pages/invite",
  1180. "pages": [
  1181. {
  1182. "path": "join",
  1183. "style": {
  1184. "navigationBarTitleText": "加入家庭",
  1185. "navigationStyle": "custom"
  1186. }
  1187. }
  1188. ]
  1189. },
  1190. {
  1191. "root": "pages/activity",
  1192. "pages": [
  1193. {
  1194. "path": "index",
  1195. "style": {
  1196. "navigationBarTitleText": "活动中心"
  1197. }
  1198. },
  1199. {
  1200. "path": "activity-detail/activity-detail",
  1201. "style": {
  1202. "navigationBarTitleText": "活动详情"
  1203. }
  1204. },
  1205. {
  1206. "path": "create",
  1207. "style": {
  1208. "navigationBarTitleText": "创建活动"
  1209. }
  1210. }
  1211. ]
  1212. },
  1213. {
  1214. "root": "pages/article-center",
  1215. "pages": [
  1216. {
  1217. "path": "index",
  1218. "style": {
  1219. "navigationBarTitleText": "知识中心",
  1220. "navigationStyle": "custom"
  1221. }
  1222. },
  1223. {
  1224. "path": "article-detail",
  1225. "style": {
  1226. "navigationBarTitleText": "文章详情"
  1227. }
  1228. },
  1229. {
  1230. "path": "article-edit",
  1231. "style": {
  1232. "navigationBarTitleText": "写成长记录",
  1233. "navigationStyle": "custom"
  1234. }
  1235. },
  1236. {
  1237. "path": "my-posts",
  1238. "style": {
  1239. "navigationBarTitleText": "我的发布"
  1240. }
  1241. }
  1242. ]
  1243. }
  1244. ],
  1245. "globalStyle": {
  1246. "navigationBarTextStyle": "black",
  1247. "navigationBarTitleText": "浠艾福",
  1248. "navigationBarBackgroundColor": "#FFFFFF",
  1249. "backgroundColor": "#F8F8F8"
  1250. },
  1251. "lazyCodeLoading": "requiredComponents",
  1252. "tabBar": {
  1253. "color": "#7A7E83",
  1254. "selectedColor": "#F97316",
  1255. "borderStyle": "black",
  1256. "backgroundColor": "#FFFFFF",
  1257. "list": [
  1258. {
  1259. "pagePath": "pages/index/index",
  1260. "text": "行",
  1261. "iconPath": "static/tab-home.png",
  1262. "selectedIconPath": "static/tab-home-active.png"
  1263. },
  1264. {
  1265. "pagePath": "pages/mind/index",
  1266. "text": "心",
  1267. "iconPath": "static/tab-mind.png",
  1268. "selectedIconPath": "static/tab-mind-active.png"
  1269. },
  1270. {
  1271. "pagePath": "pages/body/index",
  1272. "text": "身",
  1273. "iconPath": "static/tab-body.png",
  1274. "selectedIconPath": "static/tab-body-active.png"
  1275. },
  1276. {
  1277. "pagePath": "pages/wisdom/index",
  1278. "text": "智",
  1279. "iconPath": "static/tab-wealth.png",
  1280. "selectedIconPath": "static/tab-wealth-active.png"
  1281. },
  1282. {
  1283. "pagePath": "pages/wealth/index",
  1284. "text": "富",
  1285. "iconPath": "static/tab-profile.png",
  1286. "selectedIconPath": "static/tab-profile-active.png"
  1287. }
  1288. ]
  1289. }
  1290. }