pages.json 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815
  1. {
  2. "pages": [
  3. {
  4. "path": "pages/splash/index",
  5. "style": {
  6. "navigationBarTitleText": "",
  7. "navigationStyle": "custom"
  8. }
  9. },
  10. {
  11. "path": "pages/index-home/index",
  12. "style": {
  13. "navigationBarTitleText": "首页",
  14. "usingComponents": {
  15. "custom-tab-bar": "/custom-tab-bar/index"
  16. }
  17. }
  18. },
  19. {
  20. "path": "pages/health-main/index",
  21. "style": {
  22. "navigationBarTitleText": "健康",
  23. "usingComponents": {
  24. "custom-tab-bar": "/custom-tab-bar/index"
  25. }
  26. }
  27. },
  28. {
  29. "path": "pages/growth-main/index",
  30. "style": {
  31. "navigationBarTitleText": "成长记录",
  32. "usingComponents": {
  33. "custom-tab-bar": "/custom-tab-bar/index"
  34. }
  35. }
  36. },
  37. {
  38. "path": "pages/profile-main/profile",
  39. "style": {
  40. "navigationBarTitleText": "我的",
  41. "usingComponents": {
  42. "custom-tab-bar": "/custom-tab-bar/index"
  43. }
  44. }
  45. }
  46. ],
  47. "subPackages": [
  48. {
  49. "root": "pages/teacher",
  50. "pages": [
  51. {
  52. "path": "index",
  53. "style": {
  54. "navigationBarTitleText": "成长规划师中心"
  55. }
  56. },
  57. {
  58. "path": "families",
  59. "style": {
  60. "navigationBarTitleText": "我的家庭"
  61. }
  62. },
  63. {
  64. "path": "team",
  65. "style": {
  66. "navigationBarTitleText": "我的团队"
  67. }
  68. },
  69. {
  70. "path": "messages",
  71. "style": {
  72. "navigationBarTitleText": "消息中心"
  73. }
  74. },
  75. {
  76. "path": "orders",
  77. "style": {
  78. "navigationBarTitleText": "订单与佣金"
  79. }
  80. },
  81. {
  82. "path": "chat",
  83. "style": {
  84. "navigationBarTitleText": "聊天"
  85. }
  86. },
  87. {
  88. "path": "teacher-profile",
  89. "style": {
  90. "navigationBarTitleText": "我的"
  91. }
  92. },
  93. {
  94. "path": "service-tasks",
  95. "style": {
  96. "navigationBarTitleText": "待办服务任务"
  97. }
  98. }
  99. ]
  100. },
  101. {
  102. "root": "pages/guide",
  103. "pages": [
  104. {
  105. "path": "packages/index",
  106. "style": {
  107. "navigationBarTitleText": "我的任务模板"
  108. }
  109. },
  110. {
  111. "path": "packages/create",
  112. "style": {
  113. "navigationBarTitleText": "创建任务模板"
  114. }
  115. },
  116. {
  117. "path": "packages/detail",
  118. "style": {
  119. "navigationBarTitleText": "任务模板详情"
  120. }
  121. },
  122. {
  123. "path": "packages/share",
  124. "style": {
  125. "navigationBarTitleText": "分享任务模板"
  126. }
  127. },
  128. {
  129. "path": "bind/invite",
  130. "style": {
  131. "navigationBarTitleText": "绑定成长规划师"
  132. }
  133. },
  134. {
  135. "path": "register/index",
  136. "style": {
  137. "navigationBarTitleText": "成为成长规划师"
  138. }
  139. },
  140. {
  141. "path": "invite/share",
  142. "style": {
  143. "navigationBarTitleText": "邀请分享"
  144. }
  145. },
  146. {
  147. "path": "hierarchy/index",
  148. "style": {
  149. "navigationBarTitleText": "下级成长规划师"
  150. }
  151. },
  152. {
  153. "path": "activities/index",
  154. "style": {
  155. "navigationBarTitleText": "活动管理"
  156. }
  157. },
  158. {
  159. "path": "activities/detail",
  160. "style": {
  161. "navigationBarTitleText": "活动详情"
  162. }
  163. }
  164. ]
  165. },
  166. {
  167. "root": "pages/parent",
  168. "pages": [
  169. {
  170. "path": "plans/index",
  171. "style": {
  172. "navigationBarTitleText": "我的计划"
  173. }
  174. },
  175. {
  176. "path": "plans/detail",
  177. "style": {
  178. "navigationBarTitleText": "计划详情"
  179. }
  180. },
  181. {
  182. "path": "wishes/index",
  183. "style": {
  184. "navigationBarTitleText": "心愿管理"
  185. }
  186. },
  187. {
  188. "path": "appointments",
  189. "style": {
  190. "navigationBarTitleText": "我的预约"
  191. }
  192. },
  193. {
  194. "path": "child-detail",
  195. "style": {
  196. "navigationBarTitleText": "孩子详情"
  197. }
  198. }
  199. ]
  200. },
  201. {
  202. "root": "pages/child",
  203. "pages": [
  204. {
  205. "path": "tasks",
  206. "style": {
  207. "navigationBarTitleText": "孩子任务"
  208. }
  209. },
  210. {
  211. "path": "rewards",
  212. "style": {
  213. "navigationBarTitleText": "孩子心愿单"
  214. }
  215. }
  216. ]
  217. },
  218. {
  219. "root": "pages/tasks",
  220. "pages": [
  221. {
  222. "path": "tasks",
  223. "style": {
  224. "navigationBarTitleText": "任务列表"
  225. }
  226. },
  227. {
  228. "path": "create-task",
  229. "style": {
  230. "navigationBarTitleText": "添加任务"
  231. }
  232. },
  233. {
  234. "path": "review",
  235. "style": {
  236. "navigationBarTitleText": "审核任务"
  237. }
  238. },
  239. {
  240. "path": "daily-tasks",
  241. "style": {
  242. "navigationBarTitleText": "每日任务"
  243. }
  244. }
  245. ]
  246. },
  247. {
  248. "root": "pages/wishes",
  249. "pages": [
  250. {
  251. "path": "index",
  252. "style": {
  253. "navigationBarTitleText": "我的心愿"
  254. }
  255. },
  256. {
  257. "path": "create",
  258. "style": {
  259. "navigationBarTitleText": "添加心愿"
  260. }
  261. },
  262. {
  263. "path": "detail",
  264. "style": {
  265. "navigationBarTitleText": "心愿详情"
  266. }
  267. }
  268. ]
  269. },
  270. {
  271. "root": "pages/rewards",
  272. "pages": [
  273. {
  274. "path": "rewards",
  275. "style": {
  276. "navigationBarTitleText": "心愿单"
  277. }
  278. },
  279. {
  280. "path": "badge",
  281. "style": {
  282. "navigationBarTitleText": "勋章墙"
  283. }
  284. }
  285. ]
  286. },
  287. {
  288. "root": "pages/games",
  289. "pages": [
  290. {
  291. "path": "list",
  292. "style": {
  293. "navigationBarTitleText": "小游戏"
  294. }
  295. },
  296. {
  297. "path": "schulte",
  298. "style": {
  299. "navigationBarTitleText": "舒尔特方格"
  300. }
  301. },
  302. {
  303. "path": "1a2b",
  304. "style": {
  305. "navigationBarTitleText": "猜数字"
  306. }
  307. },
  308. {
  309. "path": "sudoku",
  310. "style": {
  311. "navigationBarTitleText": "数独"
  312. }
  313. },
  314. {
  315. "path": "records",
  316. "style": {
  317. "navigationBarTitleText": "训练记录"
  318. }
  319. },
  320. {
  321. "path": "stats",
  322. "style": {
  323. "navigationBarTitleText": "训练统计"
  324. }
  325. }
  326. ]
  327. },
  328. {
  329. "root": "pages/cognitive-test",
  330. "pages": [
  331. {
  332. "path": "logic-test",
  333. "style": {
  334. "navigationBarTitleText": "逻辑推理测试"
  335. }
  336. },
  337. {
  338. "path": "perception-test",
  339. "style": {
  340. "navigationBarTitleText": "感知觉测试"
  341. }
  342. },
  343. {
  344. "path": "memory-test",
  345. "style": {
  346. "navigationBarTitleText": "记忆力测试"
  347. }
  348. },
  349. {
  350. "path": "spatial-test",
  351. "style": {
  352. "navigationBarTitleText": "空间思维测试"
  353. }
  354. },
  355. {
  356. "path": "speed-test",
  357. "style": {
  358. "navigationBarTitleText": "加工速度测试"
  359. }
  360. }
  361. ]
  362. },
  363. {
  364. "root": "pages/assessment",
  365. "pages": [
  366. {
  367. "path": "apply",
  368. "style": {
  369. "navigationBarTitleText": "申请测评"
  370. }
  371. },
  372. {
  373. "path": "results",
  374. "style": {
  375. "navigationBarTitleText": "测评报告"
  376. }
  377. },
  378. {
  379. "path": "purchase",
  380. "style": {
  381. "navigationBarTitleText": "购买测评"
  382. }
  383. },
  384. {
  385. "path": "quota",
  386. "style": {
  387. "navigationBarTitleText": "我的测评额度"
  388. }
  389. },
  390. {
  391. "path": "execution",
  392. "style": {
  393. "navigationBarTitleText": "服务执行进度"
  394. }
  395. },
  396. {
  397. "path": "rating",
  398. "style": {
  399. "navigationBarTitleText": "服务评价"
  400. }
  401. }
  402. ]
  403. },
  404. {
  405. "root": "pages/assessment-plan",
  406. "pages": [
  407. {
  408. "path": "list",
  409. "style": {
  410. "navigationBarTitleText": "我的测评方案"
  411. }
  412. },
  413. {
  414. "path": "detail",
  415. "style": {
  416. "navigationBarTitleText": "方案详情"
  417. }
  418. }
  419. ]
  420. },
  421. {
  422. "root": "pages/dan-assessment",
  423. "pages": [
  424. {
  425. "path": "report-result",
  426. "style": {
  427. "navigationBarTitleText": "DAN 测评报告",
  428. "navigationStyle": "custom"
  429. }
  430. }
  431. ]
  432. },
  433. {
  434. "root": "pages/growth",
  435. "pages": [
  436. {
  437. "path": "create",
  438. "style": {
  439. "navigationBarTitleText": "创建成长记录"
  440. }
  441. },
  442. {
  443. "path": "detail",
  444. "style": {
  445. "navigationBarTitleText": "档案详情"
  446. }
  447. },
  448. {
  449. "path": "assessment-result",
  450. "style": {
  451. "navigationBarTitleText": "测评报告"
  452. }
  453. },
  454. {
  455. "path": "upload",
  456. "style": {
  457. "navigationBarTitleText": "上传测评报告"
  458. }
  459. },
  460. {
  461. "path": "supplement",
  462. "style": {
  463. "navigationBarTitleText": "补充测评材料"
  464. }
  465. },
  466. {
  467. "path": "caution-detail",
  468. "style": {
  469. "navigationBarTitleText": "食材戒备匹配"
  470. }
  471. },
  472. {
  473. "path": "diet-checkin",
  474. "style": {
  475. "navigationBarTitleText": "饮食打卡"
  476. }
  477. },
  478. {
  479. "path": "exercise-checkin",
  480. "style": {
  481. "navigationBarTitleText": "运动打卡"
  482. }
  483. },
  484. {
  485. "path": "sleep-checkin",
  486. "style": {
  487. "navigationBarTitleText": "睡眠打卡"
  488. }
  489. },
  490. {
  491. "path": "challenge-progress",
  492. "style": {
  493. "navigationBarTitleText": "闯关进度"
  494. }
  495. }
  496. ]
  497. },
  498. {
  499. "root": "pages/purchase",
  500. "pages": [
  501. {
  502. "path": "index",
  503. "style": {
  504. "navigationBarTitleText": "健康启航计划"
  505. }
  506. },
  507. {
  508. "path": "renewal",
  509. "style": {
  510. "navigationBarTitleText": "续费升级"
  511. }
  512. }
  513. ]
  514. },
  515. {
  516. "root": "pages/shop",
  517. "pages": [
  518. {
  519. "path": "index/index",
  520. "style": {
  521. "navigationBarTitleText": "浠艾福商城"
  522. }
  523. },
  524. {
  525. "path": "search/search",
  526. "style": {
  527. "navigationBarTitleText": "搜索商品"
  528. }
  529. },
  530. {
  531. "path": "order-list/order-list",
  532. "style": {
  533. "navigationBarTitleText": "我的订单"
  534. }
  535. },
  536. {
  537. "path": "order-detail/order-detail",
  538. "style": {
  539. "navigationBarTitleText": "订单详情"
  540. }
  541. },
  542. {
  543. "path": "cart/cart",
  544. "style": {
  545. "navigationBarTitleText": "购物车"
  546. }
  547. },
  548. {
  549. "path": "checkout/checkout",
  550. "style": {
  551. "navigationBarTitleText": "确认订单"
  552. }
  553. },
  554. {
  555. "path": "payment/payment",
  556. "style": {
  557. "navigationBarTitleText": "支付订单"
  558. }
  559. },
  560. {
  561. "path": "logistics/logistics",
  562. "style": {
  563. "navigationBarTitleText": "物流跟踪"
  564. }
  565. },
  566. {
  567. "path": "address/address",
  568. "style": {
  569. "navigationBarTitleText": "收货地址"
  570. }
  571. },
  572. {
  573. "path": "address-edit/address-edit",
  574. "style": {
  575. "navigationBarTitleText": "编辑地址"
  576. }
  577. },
  578. {
  579. "path": "consignee-list/consignee-list",
  580. "style": {
  581. "navigationBarTitleText": "收货人管理"
  582. }
  583. },
  584. {
  585. "path": "consignee-edit/consignee-edit",
  586. "style": {
  587. "navigationBarTitleText": "编辑收货人"
  588. }
  589. },
  590. {
  591. "path": "after-sales/after-sales",
  592. "style": {
  593. "navigationBarTitleText": "售后记录"
  594. }
  595. },
  596. {
  597. "path": "after-sales-detail/after-sales-detail",
  598. "style": {
  599. "navigationBarTitleText": "售后详情"
  600. }
  601. },
  602. {
  603. "path": "after-sales-apply/after-sales-apply",
  604. "style": {
  605. "navigationBarTitleText": "申请售后"
  606. }
  607. }
  608. ]
  609. },
  610. {
  611. "root": "pages/vendor",
  612. "pages": [
  613. {
  614. "path": "apply",
  615. "style": {
  616. "navigationBarTitleText": "服务商入驻"
  617. }
  618. },
  619. {
  620. "path": "center",
  621. "style": {
  622. "navigationBarTitleText": "服务商中心"
  623. }
  624. },
  625. {
  626. "path": "products/products",
  627. "style": {
  628. "navigationBarTitleText": "商品管理"
  629. }
  630. },
  631. {
  632. "path": "orders/orders",
  633. "style": {
  634. "navigationBarTitleText": "订单管理"
  635. }
  636. },
  637. {
  638. "path": "order-review/order-review",
  639. "style": {
  640. "navigationBarTitleText": "审核订单"
  641. }
  642. },
  643. {
  644. "path": "product-edit/product-edit",
  645. "style": {
  646. "navigationBarTitleText": "发布商品"
  647. }
  648. }
  649. ]
  650. },
  651. {
  652. "root": "pages/nutritionist",
  653. "pages": [
  654. {
  655. "path": "apply",
  656. "style": {
  657. "navigationBarTitleText": "营养师入驻"
  658. }
  659. }
  660. ]
  661. },
  662. {
  663. "root": "pages/butler",
  664. "pages": [
  665. {
  666. "path": "apply",
  667. "style": {
  668. "navigationBarTitleText": "管家入驻"
  669. }
  670. },
  671. {
  672. "path": "select",
  673. "style": {
  674. "navigationBarTitleText": "选择管家"
  675. }
  676. }
  677. ]
  678. },
  679. {
  680. "root": "pages/stats",
  681. "pages": [
  682. {
  683. "path": "completion-rate",
  684. "style": {
  685. "navigationBarTitleText": "任务完成率",
  686. "navigationStyle": "custom"
  687. }
  688. },
  689. {
  690. "path": "index",
  691. "style": {
  692. "navigationBarTitleText": "数据统计"
  693. }
  694. }
  695. ]
  696. },
  697. {
  698. "root": "pages/promotion",
  699. "pages": [
  700. {
  701. "path": "index",
  702. "style": {
  703. "navigationBarTitleText": "财富中心"
  704. }
  705. },
  706. {
  707. "path": "commission",
  708. "style": {
  709. "navigationBarTitleText": "佣金明细"
  710. }
  711. },
  712. {
  713. "path": "withdraw",
  714. "style": {
  715. "navigationBarTitleText": "提现"
  716. }
  717. },
  718. {
  719. "path": "invite",
  720. "style": {
  721. "navigationBarTitleText": "邀请好友"
  722. }
  723. },
  724. {
  725. "path": "team",
  726. "style": {
  727. "navigationBarTitleText": "推广团队"
  728. }
  729. },
  730. {
  731. "path": "leaderboard",
  732. "style": {
  733. "navigationBarTitleText": "推广排行榜",
  734. "enablePullDownRefresh": true
  735. }
  736. },
  737. {
  738. "path": "material",
  739. "style": {
  740. "navigationBarTitleText": "推广素材"
  741. }
  742. }
  743. ]
  744. },
  745. {
  746. "root": "pages/energy",
  747. "pages": [
  748. {
  749. "path": "index",
  750. "style": {
  751. "navigationBarTitleText": "五维能量"
  752. }
  753. },
  754. {
  755. "path": "detail",
  756. "style": {
  757. "navigationBarTitleText": "维度能量详情"
  758. }
  759. }
  760. ]
  761. },
  762. {
  763. "root": "pages/membership",
  764. "pages": [
  765. {
  766. "path": "index",
  767. "style": {
  768. "navigationBarTitleText": "会员中心"
  769. }
  770. },
  771. {
  772. "path": "benefits",
  773. "style": {
  774. "navigationBarTitleText": "我的权益"
  775. }
  776. },
  777. {
  778. "path": "upgrade",
  779. "style": {
  780. "navigationBarTitleText": "开通会员"
  781. }
  782. },
  783. {
  784. "path": "pay",
  785. "style": {
  786. "navigationBarTitleText": "确认订单"
  787. }
  788. },
  789. {
  790. "path": "result",
  791. "style": {
  792. "navigationBarTitleText": "支付结果"
  793. }
  794. }
  795. ]
  796. },
  797. {
  798. "root": "pages/wealth-sub",
  799. "pages": [
  800. {
  801. "path": "checkin",
  802. "style": {
  803. "navigationBarTitleText": "财商打卡"
  804. }
  805. },
  806. {
  807. "path": "insurance-list",
  808. "style": {
  809. "navigationBarTitleText": "保单管理"
  810. }
  811. },
  812. {
  813. "path": "insurance-add",
  814. "style": {
  815. "navigationBarTitleText": "新增保单"
  816. }
  817. },
  818. {
  819. "path": "insurance-planning",
  820. "style": {
  821. "navigationBarTitleText": "家庭保险规划"
  822. }
  823. }
  824. ]
  825. },
  826. {
  827. "root": "pages/meal",
  828. "pages": [
  829. {
  830. "path": "recommend",
  831. "style": {
  832. "navigationBarTitleText": "智能食谱推荐"
  833. }
  834. },
  835. {
  836. "path": "log",
  837. "style": {
  838. "navigationBarTitleText": "饮食记录"
  839. }
  840. },
  841. {
  842. "path": "recipe-detail",
  843. "style": {
  844. "navigationBarTitleText": "食谱详情"
  845. }
  846. },
  847. {
  848. "path": "preference",
  849. "style": {
  850. "navigationBarTitleText": "饮食偏好设置"
  851. }
  852. }
  853. ]
  854. },
  855. {
  856. "root": "pages/health",
  857. "pages": [
  858. {
  859. "path": "report-upload",
  860. "style": {
  861. "navigationBarTitleText": "上传报告"
  862. }
  863. },
  864. {
  865. "path": "report-confirm",
  866. "style": {
  867. "navigationBarTitleText": "确认健康报告",
  868. "navigationStyle": "custom"
  869. }
  870. },
  871. {
  872. "path": "report-survey",
  873. "style": {
  874. "navigationBarTitleText": "健康调研问卷"
  875. }
  876. },
  877. {
  878. "path": "report-list",
  879. "style": {
  880. "navigationBarTitleText": "健康报告"
  881. }
  882. },
  883. {
  884. "path": "physical-exam-detail",
  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-risks-detail",
  945. "style": {
  946. "navigationBarTitleText": "疾病风险"
  947. }
  948. },
  949. {
  950. "path": "gut-flora-foods-detail",
  951. "style": {
  952. "navigationBarTitleText": "饮食推荐"
  953. }
  954. },
  955. {
  956. "path": "challenge-manage",
  957. "style": {
  958. "navigationBarTitleText": "家庭挑战"
  959. }
  960. },
  961. {
  962. "path": "doa-index",
  963. "style": {
  964. "navigationBarTitleText": "个人目标"
  965. }
  966. },
  967. {
  968. "path": "doa-stage-create",
  969. "style": {
  970. "navigationBarTitleText": "创建阶段"
  971. }
  972. },
  973. {
  974. "path": "doa-stage-detail",
  975. "style": {
  976. "navigationBarTitleText": "阶段详情"
  977. }
  978. },
  979. {
  980. "path": "doa-week-edit",
  981. "style": {
  982. "navigationBarTitleText": "周计划与复盘"
  983. }
  984. },
  985. {
  986. "path": "water-index",
  987. "style": {
  988. "navigationBarTitleText": "饮水"
  989. }
  990. },
  991. {
  992. "path": "daily-checkin",
  993. "style": {
  994. "navigationBarTitleText": "健康打卡"
  995. }
  996. },
  997. {
  998. "path": "health-plan-summary",
  999. "style": {
  1000. "navigationBarTitleText": "方案制定"
  1001. }
  1002. },
  1003. {
  1004. "path": "teacher-service",
  1005. "style": {
  1006. "navigationBarTitleText": "选择规划师服务"
  1007. }
  1008. },
  1009. {
  1010. "path": "health-status-form",
  1011. "style": {
  1012. "navigationBarTitleText": "健康档案",
  1013. "navigationStyle": "default"
  1014. }
  1015. },
  1016. {
  1017. "path": "survey-questionnaire",
  1018. "style": {
  1019. "navigationBarTitleText": "定期调研"
  1020. }
  1021. },
  1022. {
  1023. "path": "survey-history",
  1024. "style": {
  1025. "navigationBarTitleText": "调研记录"
  1026. }
  1027. },
  1028. {
  1029. "path": "report-detail",
  1030. "style": {
  1031. "navigationBarTitleText": "报告详情"
  1032. }
  1033. }
  1034. ]
  1035. },
  1036. {
  1037. "root": "pages/body-detail",
  1038. "pages": [
  1039. {
  1040. "path": "index",
  1041. "style": {
  1042. "navigationBarTitleText": "身"
  1043. }
  1044. },
  1045. {
  1046. "path": "health-report",
  1047. "style": {
  1048. "navigationBarTitleText": "健康报告详情"
  1049. }
  1050. },
  1051. {
  1052. "path": "health-dimensions",
  1053. "style": {
  1054. "navigationBarTitleText": "健康维度全景"
  1055. }
  1056. },
  1057. {
  1058. "path": "checkin",
  1059. "style": {
  1060. "navigationBarTitleText": "健康打卡"
  1061. }
  1062. },
  1063. {
  1064. "path": "dimension-questionnaire",
  1065. "style": {
  1066. "navigationBarTitleText": "维度问卷"
  1067. }
  1068. },
  1069. {
  1070. "path": "dimension-detail",
  1071. "style": {
  1072. "navigationBarTitleText": "维度详情"
  1073. }
  1074. },
  1075. {
  1076. "path": "member-body-detail",
  1077. "style": {
  1078. "navigationBarTitleText": "身体能量详情",
  1079. "navigationStyle": "custom"
  1080. }
  1081. }
  1082. ]
  1083. },
  1084. {
  1085. "root": "pages/mind-detail",
  1086. "pages": [
  1087. {
  1088. "path": "index",
  1089. "style": {
  1090. "navigationBarTitleText": "心"
  1091. }
  1092. },
  1093. {
  1094. "path": "training",
  1095. "style": {
  1096. "navigationBarTitleText": "能力训练"
  1097. }
  1098. },
  1099. {
  1100. "path": "emotion-report",
  1101. "style": {
  1102. "navigationBarTitleText": "心理报告"
  1103. }
  1104. },
  1105. {
  1106. "path": "member-mind-detail",
  1107. "style": {
  1108. "navigationBarTitleText": "心智能量详情",
  1109. "navigationStyle": "custom"
  1110. }
  1111. },
  1112. {
  1113. "path": "emotion-checkin",
  1114. "style": {
  1115. "navigationBarTitleText": "情绪打卡"
  1116. }
  1117. },
  1118. {
  1119. "path": "emotion-trend",
  1120. "style": {
  1121. "navigationBarTitleText": "情绪趋势"
  1122. }
  1123. },
  1124. {
  1125. "path": "traditional-mirror",
  1126. "style": {
  1127. "navigationBarTitleText": "传统文化镜"
  1128. }
  1129. },
  1130. {
  1131. "path": "soothe-toolbox",
  1132. "style": {
  1133. "navigationBarTitleText": "疏导工具箱"
  1134. }
  1135. },
  1136. {
  1137. "path": "screening",
  1138. "style": {
  1139. "navigationBarTitleText": "心理状态自评"
  1140. }
  1141. },
  1142. {
  1143. "path": "family-dashboard",
  1144. "style": {
  1145. "navigationBarTitleText": "家庭天盘"
  1146. }
  1147. },
  1148. {
  1149. "path": "duo-compatibility",
  1150. "style": {
  1151. "navigationBarTitleText": "双人合盘"
  1152. }
  1153. },
  1154. {
  1155. "path": "innate-portrait",
  1156. "style": {
  1157. "navigationBarTitleText": "先天画像"
  1158. }
  1159. },
  1160. {
  1161. "path": "innate-trajectory",
  1162. "style": {
  1163. "navigationBarTitleText": "先天成长轨迹"
  1164. }
  1165. }
  1166. ]
  1167. },
  1168. {
  1169. "root": "pages/wisdom-detail",
  1170. "pages": [
  1171. {
  1172. "path": "index",
  1173. "style": {
  1174. "navigationBarTitleText": "智"
  1175. }
  1176. },
  1177. {
  1178. "path": "cognitive-report",
  1179. "style": {
  1180. "navigationBarTitleText": "认知测评报告"
  1181. }
  1182. },
  1183. {
  1184. "path": "member-wisdom-detail",
  1185. "style": {
  1186. "navigationBarTitleText": "智能量详情",
  1187. "navigationStyle": "custom"
  1188. }
  1189. },
  1190. {
  1191. "path": "self-quiz",
  1192. "style": {
  1193. "navigationBarTitleText": "自己出题自己答"
  1194. }
  1195. },
  1196. {
  1197. "path": "training-hub",
  1198. "style": {
  1199. "navigationBarTitleText": "认知训练中心"
  1200. }
  1201. }
  1202. ]
  1203. },
  1204. {
  1205. "root": "pages/wealth",
  1206. "pages": [
  1207. {
  1208. "path": "index",
  1209. "style": {
  1210. "navigationBarTitleText": "富"
  1211. }
  1212. }
  1213. ]
  1214. },
  1215. {
  1216. "root": "pages/wealth-detail",
  1217. "pages": [
  1218. {
  1219. "path": "member-wealth-detail",
  1220. "style": {
  1221. "navigationBarTitleText": "财富能量详情",
  1222. "navigationStyle": "custom"
  1223. }
  1224. }
  1225. ]
  1226. },
  1227. {
  1228. "root": "pages/action-detail",
  1229. "pages": [
  1230. {
  1231. "path": "index",
  1232. "style": {
  1233. "navigationBarTitleText": "行"
  1234. }
  1235. },
  1236. {
  1237. "path": "interaction-log",
  1238. "style": {
  1239. "navigationBarTitleText": "记录互动"
  1240. }
  1241. },
  1242. {
  1243. "path": "relationship-questionnaire",
  1244. "style": {
  1245. "navigationBarTitleText": "关系问卷"
  1246. }
  1247. },
  1248. {
  1249. "path": "member-action-detail",
  1250. "style": {
  1251. "navigationBarTitleText": "行动能量详情",
  1252. "navigationStyle": "custom"
  1253. }
  1254. },
  1255. {
  1256. "path": "contact-detail",
  1257. "style": {
  1258. "navigationBarTitleText": "联系人详情",
  1259. "navigationStyle": "custom"
  1260. }
  1261. },
  1262. {
  1263. "path": "pearl-add-resource",
  1264. "style": {
  1265. "navigationBarTitleText": "登记资源"
  1266. }
  1267. },
  1268. {
  1269. "path": "octopus-add-effect",
  1270. "style": {
  1271. "navigationBarTitleText": "感恩记录"
  1272. }
  1273. },
  1274. {
  1275. "path": "octopus-effects-list",
  1276. "style": {
  1277. "navigationBarTitleText": "感恩记录"
  1278. }
  1279. },
  1280. {
  1281. "path": "octopus-add-key-person",
  1282. "style": {
  1283. "navigationBarTitleText": "添加关键人"
  1284. }
  1285. }
  1286. ]
  1287. },
  1288. {
  1289. "root": "pages/discover-detail",
  1290. "pages": [
  1291. {
  1292. "path": "product-detail/product-detail",
  1293. "style": {
  1294. "navigationBarTitleText": "商品详情"
  1295. }
  1296. }
  1297. ]
  1298. },
  1299. {
  1300. "root": "pages/family",
  1301. "pages": [
  1302. {
  1303. "path": "add-member",
  1304. "style": {
  1305. "navigationBarTitleText": "添加家庭成员"
  1306. }
  1307. },
  1308. {
  1309. "path": "self-check",
  1310. "style": {
  1311. "navigationBarTitleText": "五维家庭自检"
  1312. }
  1313. },
  1314. {
  1315. "path": "self-check-result",
  1316. "style": {
  1317. "navigationBarTitleText": "自检报告"
  1318. }
  1319. },
  1320. {
  1321. "path": "self-check-entry",
  1322. "style": {
  1323. "navigationBarTitleText": "自检"
  1324. }
  1325. }
  1326. ]
  1327. },
  1328. {
  1329. "root": "pages/ai",
  1330. "pages": [
  1331. {
  1332. "path": "chat",
  1333. "style": {
  1334. "navigationBarTitleText": "AI 家庭助手",
  1335. "navigationStyle": "custom"
  1336. }
  1337. }
  1338. ]
  1339. },
  1340. {
  1341. "root": "pages/invite",
  1342. "pages": [
  1343. {
  1344. "path": "join",
  1345. "style": {
  1346. "navigationBarTitleText": "加入家庭",
  1347. "navigationStyle": "custom"
  1348. }
  1349. }
  1350. ]
  1351. },
  1352. {
  1353. "root": "pages/activity",
  1354. "pages": [
  1355. {
  1356. "path": "index",
  1357. "style": {
  1358. "navigationBarTitleText": "活动中心"
  1359. }
  1360. },
  1361. {
  1362. "path": "activity-detail/activity-detail",
  1363. "style": {
  1364. "navigationBarTitleText": "活动详情"
  1365. }
  1366. },
  1367. {
  1368. "path": "create",
  1369. "style": {
  1370. "navigationBarTitleText": "创建活动"
  1371. }
  1372. },
  1373. {
  1374. "path": "order-pay/order-pay",
  1375. "style": {
  1376. "navigationBarTitleText": "订单支付"
  1377. }
  1378. }
  1379. ]
  1380. },
  1381. {
  1382. "root": "pages/article-center",
  1383. "pages": [
  1384. {
  1385. "path": "index",
  1386. "style": {
  1387. "navigationBarTitleText": "知识分享",
  1388. "navigationStyle": "custom"
  1389. }
  1390. },
  1391. {
  1392. "path": "article-detail",
  1393. "style": {
  1394. "navigationBarTitleText": "文章详情"
  1395. }
  1396. },
  1397. {
  1398. "path": "article-edit",
  1399. "style": {
  1400. "navigationBarTitleText": "写成长记录",
  1401. "navigationStyle": "custom"
  1402. }
  1403. },
  1404. {
  1405. "path": "my-posts",
  1406. "style": {
  1407. "navigationBarTitleText": "我的发布"
  1408. }
  1409. }
  1410. ]
  1411. },
  1412. {
  1413. "root": "pages/tianpan",
  1414. "pages": [
  1415. {
  1416. "path": "index",
  1417. "style": {
  1418. "navigationBarTitleText": "家庭天盘",
  1419. "navigationStyle": "custom"
  1420. }
  1421. },
  1422. {
  1423. "path": "member-detail",
  1424. "style": {
  1425. "navigationBarTitleText": "成员详情",
  1426. "navigationStyle": "custom"
  1427. }
  1428. },
  1429. {
  1430. "path": "relation-detail",
  1431. "style": {
  1432. "navigationBarTitleText": "关系详情",
  1433. "navigationStyle": "custom"
  1434. }
  1435. },
  1436. {
  1437. "path": "annual-energy",
  1438. "style": {
  1439. "navigationBarTitleText": "年度能量",
  1440. "navigationStyle": "custom"
  1441. }
  1442. },
  1443. {
  1444. "path": "daily-fortune",
  1445. "style": {
  1446. "navigationBarTitleText": "每日运势",
  1447. "navigationStyle": "custom"
  1448. }
  1449. },
  1450. {
  1451. "path": "related-items",
  1452. "style": {
  1453. "navigationBarTitleText": "相关事项",
  1454. "navigationStyle": "custom"
  1455. }
  1456. },
  1457. {
  1458. "path": "traditional",
  1459. "style": {
  1460. "navigationBarTitleText": "家庭传统命理"
  1461. }
  1462. }
  1463. ]
  1464. },
  1465. {
  1466. "root": "pages/discover",
  1467. "pages": [
  1468. {
  1469. "path": "index",
  1470. "style": {
  1471. "navigationBarTitleText": "发现"
  1472. }
  1473. },
  1474. {
  1475. "path": "circles",
  1476. "style": {
  1477. "navigationBarTitleText": "发现圈子",
  1478. "navigationStyle": "custom"
  1479. }
  1480. },
  1481. {
  1482. "path": "circle-feed",
  1483. "style": {
  1484. "navigationBarTitleText": "圈子动态"
  1485. }
  1486. },
  1487. {
  1488. "path": "create-circle",
  1489. "style": {
  1490. "navigationBarTitleText": "创建圈子"
  1491. }
  1492. }
  1493. ]
  1494. },
  1495. {
  1496. "root": "pages/member-detail",
  1497. "pages": [
  1498. {
  1499. "path": "report-detail",
  1500. "style": {
  1501. "navigationBarTitleText": "报告详情"
  1502. }
  1503. },
  1504. {
  1505. "path": "service-role-apply",
  1506. "style": {
  1507. "navigationBarTitleText": "服务角色申请"
  1508. }
  1509. }
  1510. ]
  1511. },
  1512. {
  1513. "root": "pages/user-edit",
  1514. "pages": [
  1515. {
  1516. "path": "user-edit",
  1517. "style": {
  1518. "navigationBarTitleText": "完善信息"
  1519. }
  1520. }
  1521. ]
  1522. },
  1523. {
  1524. "root": "pages/policy",
  1525. "pages": [
  1526. {
  1527. "path": "agreement",
  1528. "style": {
  1529. "navigationBarTitleText": "用户协议"
  1530. }
  1531. },
  1532. {
  1533. "path": "privacy",
  1534. "style": {
  1535. "navigationBarTitleText": "隐私政策"
  1536. }
  1537. },
  1538. {
  1539. "path": "provider-agreement",
  1540. "style": {
  1541. "navigationBarTitleText": "服务商入驻协议"
  1542. }
  1543. }
  1544. ]
  1545. },
  1546. {
  1547. "root": "pages/profile-extra",
  1548. "pages": [
  1549. {
  1550. "path": "create-child",
  1551. "style": {
  1552. "navigationBarTitleText": "添加孩子"
  1553. }
  1554. },
  1555. {
  1556. "path": "children",
  1557. "style": {
  1558. "navigationBarTitleText": "孩子管理"
  1559. }
  1560. },
  1561. {
  1562. "path": "edit-child",
  1563. "style": {
  1564. "navigationBarTitleText": "编辑孩子"
  1565. }
  1566. },
  1567. {
  1568. "path": "family-members",
  1569. "style": {
  1570. "navigationBarTitleText": "家庭成员"
  1571. }
  1572. },
  1573. {
  1574. "path": "onboarding",
  1575. "style": {
  1576. "navigationBarTitleText": "新手任务"
  1577. }
  1578. },
  1579. {
  1580. "path": "coupons",
  1581. "style": {
  1582. "navigationBarTitleText": "我的优惠券"
  1583. }
  1584. },
  1585. {
  1586. "path": "gates",
  1587. "style": {
  1588. "navigationBarTitleText": "关卡中心"
  1589. }
  1590. }
  1591. ]
  1592. },
  1593. {
  1594. "root": "pages/home-pages",
  1595. "pages": [
  1596. {
  1597. "path": "parent-index",
  1598. "style": {
  1599. "navigationBarTitleText": "首页",
  1600. "enablePullDownRefresh": true
  1601. }
  1602. },
  1603. {
  1604. "path": "child-index",
  1605. "style": {
  1606. "navigationBarTitleText": "首页"
  1607. }
  1608. },
  1609. {
  1610. "path": "member-home-detail",
  1611. "style": {
  1612. "navigationBarTitleText": "成员详情",
  1613. "navigationStyle": "custom"
  1614. }
  1615. }
  1616. ]
  1617. },
  1618. {
  1619. "root": "pages/login",
  1620. "pages": [
  1621. {
  1622. "path": "login",
  1623. "style": {
  1624. "navigationBarTitleText": "登录",
  1625. "navigationStyle": "custom"
  1626. }
  1627. }
  1628. ]
  1629. },
  1630. {
  1631. "root": "pages/share",
  1632. "pages": [
  1633. {
  1634. "path": "index",
  1635. "style": {
  1636. "navigationBarTitleText": "健康足迹"
  1637. }
  1638. }
  1639. ]
  1640. },
  1641. {
  1642. "root": "pages/profile",
  1643. "pages": [
  1644. {
  1645. "path": "index",
  1646. "style": {
  1647. "navigationBarTitleText": "我的"
  1648. }
  1649. },
  1650. {
  1651. "path": "report-management",
  1652. "style": {
  1653. "navigationBarTitleText": "报告管理"
  1654. }
  1655. },
  1656. {
  1657. "path": "report-detail",
  1658. "style": {
  1659. "navigationBarTitleText": "报告详情"
  1660. }
  1661. },
  1662. {
  1663. "path": "portrait-edit",
  1664. "style": {
  1665. "navigationBarTitleText": "我的画像"
  1666. }
  1667. },
  1668. {
  1669. "path": "team-tree",
  1670. "style": {
  1671. "navigationBarTitleText": "我的团队"
  1672. }
  1673. }
  1674. ]
  1675. },
  1676. {
  1677. "root": "pages/diet",
  1678. "pages": [
  1679. {
  1680. "path": "index",
  1681. "style": {
  1682. "navigationBarTitleText": "饮食"
  1683. }
  1684. },
  1685. {
  1686. "path": "preferences",
  1687. "style": {
  1688. "navigationBarTitleText": "饮食偏好调研"
  1689. }
  1690. },
  1691. {
  1692. "path": "food-query",
  1693. "style": {
  1694. "navigationBarTitleText": "食材查询"
  1695. }
  1696. },
  1697. {
  1698. "path": "meal-config",
  1699. "style": {
  1700. "navigationBarTitleText": "共餐配置"
  1701. }
  1702. },
  1703. {
  1704. "path": "recommendation",
  1705. "style": {
  1706. "navigationBarTitleText": "食谱推荐"
  1707. }
  1708. },
  1709. {
  1710. "path": "records",
  1711. "style": {
  1712. "navigationBarTitleText": "饮食记录"
  1713. }
  1714. },
  1715. {
  1716. "path": "record-detail",
  1717. "style": {
  1718. "navigationBarTitleText": "记录详情"
  1719. }
  1720. }
  1721. ]
  1722. },
  1723. {
  1724. "root": "pages/achievement",
  1725. "pages": [
  1726. {
  1727. "path": "index",
  1728. "style": {
  1729. "navigationBarTitleText": "我的成就"
  1730. }
  1731. }
  1732. ]
  1733. },
  1734. {
  1735. "root": "pages/wealth-cf",
  1736. "pages": [
  1737. {
  1738. "path": "index",
  1739. "style": {
  1740. "navigationBarTitleText": "家庭CF值"
  1741. }
  1742. }
  1743. ]
  1744. },
  1745. {
  1746. "root": "pages/notification",
  1747. "pages": [
  1748. {
  1749. "path": "index",
  1750. "style": {
  1751. "navigationBarTitleText": "消息通知",
  1752. "enablePullDownRefresh": true
  1753. }
  1754. }
  1755. ]
  1756. },
  1757. {
  1758. "root": "pages/pearl-reminders",
  1759. "pages": [
  1760. {
  1761. "path": "index",
  1762. "style": {
  1763. "navigationBarTitleText": "互动提醒"
  1764. }
  1765. }
  1766. ]
  1767. }
  1768. ],
  1769. "globalStyle": {
  1770. "navigationBarTextStyle": "black",
  1771. "navigationBarTitleText": "浠艾福",
  1772. "navigationBarBackgroundColor": "#FFFFFF",
  1773. "backgroundColor": "#F8F8F8"
  1774. },
  1775. "lazyCodeLoading": "requiredComponents",
  1776. "tabBar": {
  1777. "color": "#7A7E83",
  1778. "selectedColor": "#F97316",
  1779. "borderStyle": "black",
  1780. "backgroundColor": "#FFFFFF",
  1781. "custom": true,
  1782. "list": [
  1783. {
  1784. "pagePath": "pages/index-home/index",
  1785. "text": "首页",
  1786. "iconPath": "static/tab-home.png",
  1787. "selectedIconPath": "static/tab-home-active.png"
  1788. },
  1789. {
  1790. "pagePath": "pages/health-main/index",
  1791. "text": "健康",
  1792. "iconPath": "static/tab-health.png",
  1793. "selectedIconPath": "static/tab-health-active.png"
  1794. },
  1795. {
  1796. "pagePath": "pages/growth-main/index",
  1797. "text": "成长",
  1798. "iconPath": "static/tab-growth.png",
  1799. "selectedIconPath": "static/tab-growth-active.png"
  1800. },
  1801. {
  1802. "pagePath": "pages/profile-main/profile",
  1803. "text": "我的",
  1804. "iconPath": "static/tab-profile.png",
  1805. "selectedIconPath": "static/tab-profile-active.png"
  1806. }
  1807. ]
  1808. },
  1809. "easycom": {
  1810. "auto": "components/@dcloudio/uni-$2/components/uni-$1/uni-$1.vue",
  1811. "pages": {
  1812. "pages/*": "components/@dcloudio/uni-$2/components/uni-$1/uni-$1.vue"
  1813. }
  1814. }
  1815. }