pages.json 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314
  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": "training-plans/index",
  296. "style": {
  297. "navigationBarTitleText": "训练方案"
  298. }
  299. },
  300. {
  301. "path": "training-plans/detail",
  302. "style": {
  303. "navigationBarTitleText": "方案详情"
  304. }
  305. },
  306. {
  307. "path": "activities/index",
  308. "style": {
  309. "navigationBarTitleText": "活动管理"
  310. }
  311. },
  312. {
  313. "path": "activities/detail",
  314. "style": {
  315. "navigationBarTitleText": "活动详情"
  316. }
  317. },
  318. {
  319. "path": "plans/index",
  320. "style": {
  321. "navigationBarTitleText": "测评方案审核"
  322. }
  323. },
  324. {
  325. "path": "plans/detail",
  326. "style": {
  327. "navigationBarTitleText": "方案详情"
  328. }
  329. }
  330. ]
  331. },
  332. {
  333. "root": "pages/parent",
  334. "pages": [
  335. {
  336. "path": "market/index",
  337. "style": {
  338. "navigationBarTitleText": "任务模板市场"
  339. }
  340. },
  341. {
  342. "path": "market/detail",
  343. "style": {
  344. "navigationBarTitleText": "任务模板详情"
  345. }
  346. },
  347. {
  348. "path": "plans/index",
  349. "style": {
  350. "navigationBarTitleText": "我的计划"
  351. }
  352. },
  353. {
  354. "path": "plans/detail",
  355. "style": {
  356. "navigationBarTitleText": "计划详情"
  357. }
  358. },
  359. {
  360. "path": "wishes/index",
  361. "style": {
  362. "navigationBarTitleText": "心愿管理"
  363. }
  364. },
  365. {
  366. "path": "child-detail",
  367. "style": {
  368. "navigationBarTitleText": "孩子详情"
  369. }
  370. },
  371. {
  372. "path": "invite/index",
  373. "style": {
  374. "navigationBarTitleText": "邀请加入"
  375. }
  376. }
  377. ]
  378. },
  379. {
  380. "root": "pages/child",
  381. "pages": [
  382. {
  383. "path": "tasks",
  384. "style": {
  385. "navigationBarTitleText": "孩子任务"
  386. }
  387. },
  388. {
  389. "path": "rewards",
  390. "style": {
  391. "navigationBarTitleText": "孩子心愿单"
  392. }
  393. }
  394. ]
  395. },
  396. {
  397. "root": "pages/tasks",
  398. "pages": [
  399. {
  400. "path": "tasks",
  401. "style": {
  402. "navigationBarTitleText": "任务列表"
  403. }
  404. },
  405. {
  406. "path": "create-task",
  407. "style": {
  408. "navigationBarTitleText": "添加任务"
  409. }
  410. },
  411. {
  412. "path": "review",
  413. "style": {
  414. "navigationBarTitleText": "审核任务"
  415. }
  416. },
  417. {
  418. "path": "daily-tasks",
  419. "style": {
  420. "navigationBarTitleText": "每日任务"
  421. }
  422. }
  423. ]
  424. },
  425. {
  426. "root": "pages/wishes",
  427. "pages": [
  428. {
  429. "path": "index",
  430. "style": {
  431. "navigationBarTitleText": "我的心愿"
  432. }
  433. },
  434. {
  435. "path": "create",
  436. "style": {
  437. "navigationBarTitleText": "添加心愿"
  438. }
  439. },
  440. {
  441. "path": "detail",
  442. "style": {
  443. "navigationBarTitleText": "心愿详情"
  444. }
  445. }
  446. ]
  447. },
  448. {
  449. "root": "pages/rewards",
  450. "pages": [
  451. {
  452. "path": "rewards",
  453. "style": {
  454. "navigationBarTitleText": "心愿单"
  455. }
  456. },
  457. {
  458. "path": "badge",
  459. "style": {
  460. "navigationBarTitleText": "勋章墙"
  461. }
  462. }
  463. ]
  464. },
  465. {
  466. "root": "pages/games",
  467. "pages": [
  468. {
  469. "path": "list",
  470. "style": {
  471. "navigationBarTitleText": "小游戏"
  472. }
  473. },
  474. {
  475. "path": "schulte",
  476. "style": {
  477. "navigationBarTitleText": "舒尔特方格"
  478. }
  479. },
  480. {
  481. "path": "1a2b",
  482. "style": {
  483. "navigationBarTitleText": "猜数字"
  484. }
  485. },
  486. {
  487. "path": "sudoku",
  488. "style": {
  489. "navigationBarTitleText": "数独"
  490. }
  491. },
  492. {
  493. "path": "records",
  494. "style": {
  495. "navigationBarTitleText": "训练记录"
  496. }
  497. },
  498. {
  499. "path": "stats",
  500. "style": {
  501. "navigationBarTitleText": "训练统计"
  502. }
  503. }
  504. ]
  505. },
  506. {
  507. "root": "pages/assessment",
  508. "pages": [
  509. {
  510. "path": "apply",
  511. "style": {
  512. "navigationBarTitleText": "申请测评"
  513. }
  514. },
  515. {
  516. "path": "results",
  517. "style": {
  518. "navigationBarTitleText": "测评报告"
  519. }
  520. },
  521. {
  522. "path": "purchase",
  523. "style": {
  524. "navigationBarTitleText": "购买测评"
  525. }
  526. },
  527. {
  528. "path": "quota",
  529. "style": {
  530. "navigationBarTitleText": "我的测评额度"
  531. }
  532. },
  533. {
  534. "path": "upload-report",
  535. "style": {
  536. "navigationBarTitleText": "上传测评报告"
  537. }
  538. }
  539. ]
  540. },
  541. {
  542. "root": "pages/dan-assessment",
  543. "pages": [
  544. {
  545. "path": "report-upload",
  546. "style": {
  547. "navigationBarTitleText": "DAN 报告上传",
  548. "navigationStyle": "custom"
  549. }
  550. }
  551. ]
  552. },
  553. {
  554. "root": "pages/growth",
  555. "pages": [
  556. {
  557. "path": "index",
  558. "style": {
  559. "navigationBarTitleText": "成长档案"
  560. }
  561. },
  562. {
  563. "path": "create",
  564. "style": {
  565. "navigationBarTitleText": "创建成长档案"
  566. }
  567. },
  568. {
  569. "path": "detail",
  570. "style": {
  571. "navigationBarTitleText": "档案详情"
  572. }
  573. },
  574. {
  575. "path": "assessment-result",
  576. "style": {
  577. "navigationBarTitleText": "测评报告"
  578. }
  579. },
  580. {
  581. "path": "upload",
  582. "style": {
  583. "navigationBarTitleText": "上传测评报告"
  584. }
  585. },
  586. {
  587. "path": "supplement",
  588. "style": {
  589. "navigationBarTitleText": "补充测评材料"
  590. }
  591. }
  592. ]
  593. },
  594. {
  595. "root": "pages/shop",
  596. "pages": [
  597. {
  598. "path": "index/index",
  599. "style": {
  600. "navigationBarTitleText": "商品首页"
  601. }
  602. },
  603. {
  604. "path": "order-list/order-list",
  605. "style": {
  606. "navigationBarTitleText": "我的订单"
  607. }
  608. },
  609. {
  610. "path": "order-detail/order-detail",
  611. "style": {
  612. "navigationBarTitleText": "订单详情"
  613. }
  614. },
  615. {
  616. "path": "cart/cart",
  617. "style": {
  618. "navigationBarTitleText": "购物车"
  619. }
  620. },
  621. {
  622. "path": "checkout/checkout",
  623. "style": {
  624. "navigationBarTitleText": "确认订单"
  625. }
  626. },
  627. {
  628. "path": "payment/payment",
  629. "style": {
  630. "navigationBarTitleText": "支付订单"
  631. }
  632. },
  633. {
  634. "path": "logistics/logistics",
  635. "style": {
  636. "navigationBarTitleText": "物流跟踪"
  637. }
  638. },
  639. {
  640. "path": "address/address",
  641. "style": {
  642. "navigationBarTitleText": "收货地址"
  643. }
  644. },
  645. {
  646. "path": "address-edit/address-edit",
  647. "style": {
  648. "navigationBarTitleText": "编辑地址"
  649. }
  650. },
  651. {
  652. "path": "consignee-list/consignee-list",
  653. "style": {
  654. "navigationBarTitleText": "收货人管理"
  655. }
  656. },
  657. {
  658. "path": "consignee-edit/consignee-edit",
  659. "style": {
  660. "navigationBarTitleText": "编辑收货人"
  661. }
  662. },
  663. {
  664. "path": "detail/detail",
  665. "style": {
  666. "navigationBarTitleText": "商品详情"
  667. }
  668. },
  669. {
  670. "path": "after-sales/after-sales",
  671. "style": {
  672. "navigationBarTitleText": "售后记录"
  673. }
  674. },
  675. {
  676. "path": "after-sales-detail/after-sales-detail",
  677. "style": {
  678. "navigationBarTitleText": "售后详情"
  679. }
  680. },
  681. {
  682. "path": "after-sales-apply/after-sales-apply",
  683. "style": {
  684. "navigationBarTitleText": "申请售后"
  685. }
  686. }
  687. ]
  688. },
  689. {
  690. "root": "pages/vendor",
  691. "pages": [
  692. {
  693. "path": "apply",
  694. "style": {
  695. "navigationBarTitleText": "服务商入驻"
  696. }
  697. },
  698. {
  699. "path": "center",
  700. "style": {
  701. "navigationBarTitleText": "服务商中心"
  702. }
  703. },
  704. {
  705. "path": "products/products",
  706. "style": {
  707. "navigationBarTitleText": "商品管理"
  708. }
  709. },
  710. {
  711. "path": "orders/orders",
  712. "style": {
  713. "navigationBarTitleText": "订单管理"
  714. }
  715. },
  716. {
  717. "path": "product-edit/product-edit",
  718. "style": {
  719. "navigationBarTitleText": "发布商品"
  720. }
  721. }
  722. ]
  723. },
  724. {
  725. "root": "pages/nutritionist",
  726. "pages": [
  727. {
  728. "path": "apply/index",
  729. "style": {
  730. "navigationBarTitleText": "营养师入驻"
  731. }
  732. }
  733. ]
  734. },
  735. {
  736. "root": "pages/butler",
  737. "pages": [
  738. {
  739. "path": "apply/index",
  740. "style": {
  741. "navigationBarTitleText": "管家入驻"
  742. }
  743. }
  744. ]
  745. },
  746. {
  747. "root": "pages/stats",
  748. "pages": [
  749. {
  750. "path": "completion-rate",
  751. "style": {
  752. "navigationBarTitleText": "任务完成率",
  753. "navigationStyle": "custom"
  754. }
  755. },
  756. {
  757. "path": "index",
  758. "style": {
  759. "navigationBarTitleText": "数据统计"
  760. }
  761. }
  762. ]
  763. },
  764. {
  765. "root": "pages/promotion",
  766. "pages": [
  767. {
  768. "path": "index",
  769. "style": {
  770. "navigationBarTitleText": "财富中心"
  771. }
  772. },
  773. {
  774. "path": "commission",
  775. "style": {
  776. "navigationBarTitleText": "佣金明细"
  777. }
  778. },
  779. {
  780. "path": "withdraw",
  781. "style": {
  782. "navigationBarTitleText": "提现"
  783. }
  784. },
  785. {
  786. "path": "invite",
  787. "style": {
  788. "navigationBarTitleText": "邀请好友"
  789. }
  790. },
  791. {
  792. "path": "team",
  793. "style": {
  794. "navigationBarTitleText": "推广团队"
  795. }
  796. },
  797. {
  798. "path": "leaderboard",
  799. "style": {
  800. "navigationBarTitleText": "推广排行榜",
  801. "enablePullDownRefresh": true
  802. }
  803. },
  804. {
  805. "path": "material",
  806. "style": {
  807. "navigationBarTitleText": "推广素材"
  808. }
  809. }
  810. ]
  811. },
  812. {
  813. "root": "pages/energy",
  814. "pages": [
  815. {
  816. "path": "detail",
  817. "style": {
  818. "navigationBarTitleText": "维度能量详情"
  819. }
  820. }
  821. ]
  822. },
  823. {
  824. "root": "pages/membership",
  825. "pages": [
  826. {
  827. "path": "benefits",
  828. "style": {
  829. "navigationBarTitleText": "我的权益"
  830. }
  831. },
  832. {
  833. "path": "plans",
  834. "style": {
  835. "navigationBarTitleText": "一生一世会员"
  836. }
  837. },
  838. {
  839. "path": "upgrade",
  840. "style": {
  841. "navigationBarTitleText": "开通会员"
  842. }
  843. }
  844. ]
  845. },
  846. {
  847. "root": "pages/points",
  848. "pages": [
  849. {
  850. "path": "mall",
  851. "style": {
  852. "navigationBarTitleText": "积分商城"
  853. }
  854. }
  855. ]
  856. },
  857. {
  858. "root": "pages/wealth-sub",
  859. "pages": [
  860. {
  861. "path": "checkin",
  862. "style": {
  863. "navigationBarTitleText": "财商打卡"
  864. }
  865. },
  866. {
  867. "path": "insurance-list",
  868. "style": {
  869. "navigationBarTitleText": "保单管理"
  870. }
  871. },
  872. {
  873. "path": "insurance-add",
  874. "style": {
  875. "navigationBarTitleText": "新增保单"
  876. }
  877. }
  878. ]
  879. },
  880. {
  881. "root": "pages/meal",
  882. "pages": [
  883. {
  884. "path": "recommend",
  885. "style": {
  886. "navigationBarTitleText": "智能食谱推荐"
  887. }
  888. },
  889. {
  890. "path": "log",
  891. "style": {
  892. "navigationBarTitleText": "饮食记录"
  893. }
  894. },
  895. {
  896. "path": "recipe-detail",
  897. "style": {
  898. "navigationBarTitleText": "食谱详情"
  899. }
  900. },
  901. {
  902. "path": "preference",
  903. "style": {
  904. "navigationBarTitleText": "饮食偏好设置"
  905. }
  906. }
  907. ]
  908. },
  909. {
  910. "root": "pages/health",
  911. "pages": [
  912. {
  913. "path": "report-upload",
  914. "style": {
  915. "navigationBarTitleText": "上传健康报告"
  916. }
  917. },
  918. {
  919. "path": "report-confirm",
  920. "style": {
  921. "navigationBarTitleText": "确认健康报告",
  922. "navigationStyle": "custom"
  923. }
  924. },
  925. {
  926. "path": "report-survey",
  927. "style": {
  928. "navigationBarTitleText": "健康调研问卷"
  929. }
  930. },
  931. {
  932. "path": "report-list",
  933. "style": {
  934. "navigationBarTitleText": "健康报告"
  935. }
  936. },
  937. {
  938. "path": "nutrition-profile",
  939. "style": {
  940. "navigationBarTitleText": "营养档案"
  941. }
  942. },
  943. {
  944. "path": "tongue-index",
  945. "style": {
  946. "navigationBarTitleText": "舌诊分析"
  947. }
  948. },
  949. {
  950. "path": "exercise-index",
  951. "style": {
  952. "navigationBarTitleText": "运动"
  953. }
  954. },
  955. {
  956. "path": "diet-index",
  957. "style": {
  958. "navigationBarTitleText": "饮食"
  959. }
  960. },
  961. {
  962. "path": "sleep-index",
  963. "style": {
  964. "navigationBarTitleText": "作息"
  965. }
  966. },
  967. {
  968. "path": "meditation-index",
  969. "style": {
  970. "navigationBarTitleText": "冥想"
  971. }
  972. },
  973. {
  974. "path": "gut-index",
  975. "style": {
  976. "navigationBarTitleText": "菌群"
  977. }
  978. }
  979. ]
  980. },
  981. {
  982. "root": "pages/body-detail",
  983. "pages": [
  984. {
  985. "path": "health-report",
  986. "style": {
  987. "navigationBarTitleText": "健康报告详情"
  988. }
  989. },
  990. {
  991. "path": "health-dimensions",
  992. "style": {
  993. "navigationBarTitleText": "健康维度全景"
  994. }
  995. },
  996. {
  997. "path": "checkin",
  998. "style": {
  999. "navigationBarTitleText": "健康打卡"
  1000. }
  1001. },
  1002. {
  1003. "path": "dimension-questionnaire",
  1004. "style": {
  1005. "navigationBarTitleText": "维度问卷"
  1006. }
  1007. },
  1008. {
  1009. "path": "dimension-detail",
  1010. "style": {
  1011. "navigationBarTitleText": "维度详情"
  1012. }
  1013. },
  1014. {
  1015. "path": "member-body-detail",
  1016. "style": {
  1017. "navigationBarTitleText": "身体能量详情",
  1018. "navigationStyle": "custom"
  1019. }
  1020. }
  1021. ]
  1022. },
  1023. {
  1024. "root": "pages/mind-detail",
  1025. "pages": [
  1026. {
  1027. "path": "articles",
  1028. "style": {
  1029. "navigationBarTitleText": "心智成长"
  1030. }
  1031. },
  1032. {
  1033. "path": "article-detail",
  1034. "style": {
  1035. "navigationBarTitleText": "文章详情"
  1036. }
  1037. },
  1038. {
  1039. "path": "training",
  1040. "style": {
  1041. "navigationBarTitleText": "能力训练"
  1042. }
  1043. },
  1044. {
  1045. "path": "emotion-report",
  1046. "style": {
  1047. "navigationBarTitleText": "心理报告"
  1048. }
  1049. },
  1050. {
  1051. "path": "member-mind-detail",
  1052. "style": {
  1053. "navigationBarTitleText": "心智能量详情",
  1054. "navigationStyle": "custom"
  1055. }
  1056. },
  1057. {
  1058. "path": "emotion-checkin",
  1059. "style": {
  1060. "navigationBarTitleText": "情绪打卡"
  1061. }
  1062. },
  1063. {
  1064. "path": "emotion-trend",
  1065. "style": {
  1066. "navigationBarTitleText": "情绪趋势"
  1067. }
  1068. },
  1069. {
  1070. "path": "traditional-mirror",
  1071. "style": {
  1072. "navigationBarTitleText": "传统文化镜"
  1073. }
  1074. },
  1075. {
  1076. "path": "soothe-toolbox",
  1077. "style": {
  1078. "navigationBarTitleText": "疏导工具箱"
  1079. }
  1080. },
  1081. {
  1082. "path": "screening",
  1083. "style": {
  1084. "navigationBarTitleText": "心理状态自评"
  1085. }
  1086. },
  1087. {
  1088. "path": "family-dashboard",
  1089. "style": {
  1090. "navigationBarTitleText": "家庭天盘"
  1091. }
  1092. },
  1093. {
  1094. "path": "duo-compatibility",
  1095. "style": {
  1096. "navigationBarTitleText": "双人合盘"
  1097. }
  1098. }
  1099. ]
  1100. },
  1101. {
  1102. "root": "pages/wisdom-detail",
  1103. "pages": [
  1104. {
  1105. "path": "cognitive-report",
  1106. "style": {
  1107. "navigationBarTitleText": "认知测评报告"
  1108. }
  1109. },
  1110. {
  1111. "path": "member-wisdom-detail",
  1112. "style": {
  1113. "navigationBarTitleText": "智能量详情",
  1114. "navigationStyle": "custom"
  1115. }
  1116. },
  1117. {
  1118. "path": "self-quiz",
  1119. "style": {
  1120. "navigationBarTitleText": "自己出题自己答"
  1121. }
  1122. },
  1123. {
  1124. "path": "training-hub",
  1125. "style": {
  1126. "navigationBarTitleText": "认知训练中心"
  1127. }
  1128. }
  1129. ]
  1130. },
  1131. {
  1132. "root": "pages/action-detail",
  1133. "pages": [
  1134. {
  1135. "path": "interaction-log",
  1136. "style": {
  1137. "navigationBarTitleText": "记录互动"
  1138. }
  1139. },
  1140. {
  1141. "path": "relationship-questionnaire",
  1142. "style": {
  1143. "navigationBarTitleText": "关系问卷"
  1144. }
  1145. },
  1146. {
  1147. "path": "member-action-detail",
  1148. "style": {
  1149. "navigationBarTitleText": "行动能量详情",
  1150. "navigationStyle": "custom"
  1151. }
  1152. },
  1153. {
  1154. "path": "contact-detail",
  1155. "style": {
  1156. "navigationBarTitleText": "联系人详情",
  1157. "navigationStyle": "custom"
  1158. }
  1159. }
  1160. ]
  1161. },
  1162. {
  1163. "root": "pages/discover-detail",
  1164. "pages": [
  1165. {
  1166. "path": "product-detail/product-detail",
  1167. "style": {
  1168. "navigationBarTitleText": "商品详情"
  1169. }
  1170. },
  1171. {
  1172. "path": "activity-detail/activity-detail",
  1173. "style": {
  1174. "navigationBarTitleText": "活动详情"
  1175. }
  1176. }
  1177. ]
  1178. },
  1179. {
  1180. "root": "pages/family",
  1181. "pages": [
  1182. {
  1183. "path": "add-member",
  1184. "style": {
  1185. "navigationBarTitleText": "添加家庭成员"
  1186. }
  1187. }
  1188. ]
  1189. },
  1190. {
  1191. "root": "pages/ai",
  1192. "pages": [
  1193. {
  1194. "path": "chat",
  1195. "style": {
  1196. "navigationBarTitleText": "AI 家庭助手",
  1197. "navigationStyle": "custom"
  1198. }
  1199. }
  1200. ]
  1201. },
  1202. {
  1203. "root": "pages/invite",
  1204. "pages": [
  1205. {
  1206. "path": "join",
  1207. "style": {
  1208. "navigationBarTitleText": "加入家庭",
  1209. "navigationStyle": "custom"
  1210. }
  1211. }
  1212. ]
  1213. },
  1214. {
  1215. "root": "pages/activity",
  1216. "pages": [
  1217. {
  1218. "path": "index",
  1219. "style": {
  1220. "navigationBarTitleText": "活动中心"
  1221. }
  1222. },
  1223. {
  1224. "path": "activity-detail/activity-detail",
  1225. "style": {
  1226. "navigationBarTitleText": "活动详情"
  1227. }
  1228. },
  1229. {
  1230. "path": "create",
  1231. "style": {
  1232. "navigationBarTitleText": "创建活动"
  1233. }
  1234. }
  1235. ]
  1236. },
  1237. {
  1238. "root": "pages/article-center",
  1239. "pages": [
  1240. {
  1241. "path": "index",
  1242. "style": {
  1243. "navigationBarTitleText": "知识中心",
  1244. "navigationStyle": "custom"
  1245. }
  1246. },
  1247. {
  1248. "path": "article-detail",
  1249. "style": {
  1250. "navigationBarTitleText": "文章详情"
  1251. }
  1252. },
  1253. {
  1254. "path": "article-edit",
  1255. "style": {
  1256. "navigationBarTitleText": "写成长记录",
  1257. "navigationStyle": "custom"
  1258. }
  1259. },
  1260. {
  1261. "path": "my-posts",
  1262. "style": {
  1263. "navigationBarTitleText": "我的发布"
  1264. }
  1265. }
  1266. ]
  1267. }
  1268. ],
  1269. "globalStyle": {
  1270. "navigationBarTextStyle": "black",
  1271. "navigationBarTitleText": "浠艾福",
  1272. "navigationBarBackgroundColor": "#FFFFFF",
  1273. "backgroundColor": "#F8F8F8"
  1274. },
  1275. "lazyCodeLoading": "requiredComponents",
  1276. "tabBar": {
  1277. "color": "#7A7E83",
  1278. "selectedColor": "#F97316",
  1279. "borderStyle": "black",
  1280. "backgroundColor": "#FFFFFF",
  1281. "list": [
  1282. {
  1283. "pagePath": "pages/index/index",
  1284. "text": "行",
  1285. "iconPath": "static/tab-home.png",
  1286. "selectedIconPath": "static/tab-home-active.png"
  1287. },
  1288. {
  1289. "pagePath": "pages/mind/index",
  1290. "text": "心",
  1291. "iconPath": "static/tab-mind.png",
  1292. "selectedIconPath": "static/tab-mind-active.png"
  1293. },
  1294. {
  1295. "pagePath": "pages/body/index",
  1296. "text": "身",
  1297. "iconPath": "static/tab-body.png",
  1298. "selectedIconPath": "static/tab-body-active.png"
  1299. },
  1300. {
  1301. "pagePath": "pages/wisdom/index",
  1302. "text": "智",
  1303. "iconPath": "static/tab-wealth.png",
  1304. "selectedIconPath": "static/tab-wealth-active.png"
  1305. },
  1306. {
  1307. "pagePath": "pages/wealth/index",
  1308. "text": "富",
  1309. "iconPath": "static/tab-profile.png",
  1310. "selectedIconPath": "static/tab-profile-active.png"
  1311. }
  1312. ]
  1313. }
  1314. }