pages.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/common/launch",
  5. "navigationStyle": "custom"
  6. },
  7. {
  8. "path": "pages/auth/login",
  9. "style": {
  10. "navigationBarTitleText": "授权登录",
  11. "navigationStyle": "custom"
  12. }
  13. },
  14. {
  15. "path": "pages/auth/wxLogin",
  16. "style": {
  17. "navigationBarTitleText": "公众号授权",
  18. "navigationStyle": "custom"
  19. }
  20. },
  21. {
  22. "path": "pages/home/index",
  23. "style": {
  24. "navigationBarTitleText": "芳华佳选",
  25. "enablePullDownRefresh": false,
  26. "navigationStyle": "custom",
  27. "app-plus": {
  28. "titleNView": false
  29. }
  30. }
  31. },
  32. {
  33. "path" : "pages/user/test",
  34. "style" :
  35. {
  36. "navigationBarTitleText": "test",
  37. "app-plus": {
  38. "titleNView": false
  39. }
  40. }
  41. },
  42. // {
  43. // "path" : "pages/home/doctorCase",
  44. // "style" :
  45. // {
  46. // "navigationBarTitleText": "问诊案例",
  47. // "app-plus": {
  48. // "titleNView": false
  49. // }
  50. // }
  51. // },
  52. {
  53. "path" : "pages/doctor/doctorQr",
  54. "style" :
  55. {
  56. "navigationBarTitleText": "用药咨询",
  57. "app-plus": {
  58. "titleNView": false
  59. }
  60. }
  61. },
  62. {
  63. "path" : "pages/home/productSearch",
  64. "style" :
  65. {
  66. "navigationBarTitleText": "商品搜索",
  67. "app-plus": {
  68. "titleNView": false
  69. }
  70. }
  71. },
  72. {
  73. "path" : "pages/home/productList",
  74. "style" :
  75. {
  76. "navigationBarTitleText": "商品列表",
  77. "app-plus": {
  78. "titleNView": false
  79. }
  80. }
  81. },
  82. {
  83. "path" : "pages/healthy/index",
  84. "style" :
  85. {
  86. "navigationBarTitleText": "健康知识",
  87. "enablePullDownRefresh": false,
  88. "navigationStyle": "custom",
  89. "app-plus": {
  90. "titleNView": false
  91. }
  92. }
  93. },
  94. {
  95. "path" : "pages/healthy/detail",
  96. "style" :
  97. {
  98. "navigationBarTitleText": "",
  99. "enablePullDownRefresh": false,
  100. "app-plus": {
  101. "titleNView": false
  102. }
  103. }
  104. },
  105. {
  106. "path" : "pages/healthy/readUsers",
  107. "style" :
  108. {
  109. "navigationBarTitleText": "阅读用户",
  110. "enablePullDownRefresh": false,
  111. "app-plus": {
  112. "titleNView": false
  113. }
  114. }
  115. },
  116. // {
  117. // "path" : "pages/doctor/index",
  118. // "style" :
  119. // {
  120. // "navigationBarTitleText": "问诊",
  121. // "navigationStyle": "custom",
  122. // "enablePullDownRefresh": false
  123. // }
  124. // },
  125. // {
  126. // "path" : "pages/doctor/doctorList",
  127. // "style" :
  128. // {
  129. // "navigationBarTitleText": "医生列表",
  130. // "enablePullDownRefresh": false
  131. // }
  132. // },
  133. // {
  134. // "path" : "pages/doctor/doctorDetail",
  135. // "style" :
  136. // {
  137. // "navigationBarTitleText": "医生详情",
  138. // "navigationStyle": "custom",
  139. // "enablePullDownRefresh": false
  140. // }
  141. // },
  142. // {
  143. // "path" : "pages/doctor/submitOrder",
  144. // "style" :
  145. // {
  146. // "navigationBarTitleText": "发布问诊",
  147. // "enablePullDownRefresh": false
  148. // }
  149. // },
  150. {
  151. "path" : "pages/shopping/index",
  152. "style" :
  153. {
  154. "navigationBarTitleText": "商城",
  155. "navigationStyle": "custom",
  156. "enablePullDownRefresh": false
  157. }
  158. },
  159. {
  160. "path": "pages/user/index",
  161. "style": {
  162. "navigationBarTitleText": "我的",
  163. "navigationStyle": "custom",
  164. "app-plus": {
  165. "titleNView": false
  166. }
  167. }
  168. }
  169. ,{
  170. "path" : "pages/shopping/productDetails",
  171. "style" :
  172. {
  173. "navigationBarTitleText": "商品详情",
  174. "enablePullDownRefresh": false
  175. }
  176. }
  177. ,{
  178. "path" : "pages/home/companyInfo",
  179. "style" :
  180. {
  181. "navigationBarTitleText": "企业理念",
  182. "enablePullDownRefresh": false
  183. }
  184. }
  185. ,{
  186. "path" : "pages/shopping/cart",
  187. "style" :
  188. {
  189. "navigationBarTitleText": "购物车",
  190. "enablePullDownRefresh": false
  191. }
  192. }
  193. ,{
  194. "path" : "pages/shopping/productList",
  195. "style" :
  196. {
  197. "navigationBarTitleText": "药品列表",
  198. "enablePullDownRefresh": false
  199. }
  200. }
  201. ,{
  202. "path" : "pages/shopping/confirmOrder",
  203. "style" :
  204. {
  205. "navigationBarTitleText": "确认订单",
  206. "enablePullDownRefresh": false
  207. }
  208. }
  209. ,{
  210. "path" : "pages/shopping/paymentOrder",
  211. "style" :
  212. {
  213. "navigationBarTitleText": "支付订单",
  214. "enablePullDownRefresh": false
  215. }
  216. }
  217. ,{
  218. "path" : "pages/shopping/payOrder",
  219. "style" :
  220. {
  221. "navigationBarTitleText": "推荐订单支付",
  222. "enablePullDownRefresh": false
  223. }
  224. }
  225. ,{
  226. "path" : "pages/shopping/prescribe",
  227. "style" :
  228. {
  229. "navigationBarTitleText": "填写处方信息",
  230. "navigationStyle": "custom",
  231. "enablePullDownRefresh": false
  232. }
  233. }
  234. // ,{
  235. // "path" : "pages/doctor/doctorIm",
  236. // "style" :
  237. // {
  238. // "navigationBarTitleText": "问诊会话",
  239. // "enablePullDownRefresh": false
  240. // }
  241. // }
  242. ,{
  243. "path" : "pages/shopping/success",
  244. "style" :
  245. {
  246. "navigationBarTitleText": "支付成功",
  247. "enablePullDownRefresh": false
  248. }
  249. }
  250. // ,{
  251. // "path" : "pages/doctor/paymentOrder",
  252. // "style" :
  253. // {
  254. // "navigationBarTitleText": "支付订单",
  255. // "enablePullDownRefresh": false
  256. // }
  257. // }
  258. // ,{
  259. // "path" : "pages/doctor/doctorOrderIM",
  260. // "style" :
  261. // {
  262. // "navigationBarTitleText": "问诊会话",
  263. // "enablePullDownRefresh": false
  264. // }
  265. // }
  266. ,{
  267. "path" : "pages/home/content",
  268. "style" :
  269. {
  270. "navigationBarTitleText": "详情",
  271. "enablePullDownRefresh": false
  272. }
  273. }
  274. ,{
  275. "path" : "pages/home/h5",
  276. "style" :
  277. {
  278. "navigationBarTitleText": "详情",
  279. "enablePullDownRefresh": false
  280. }
  281. }
  282. ,{
  283. "path" : "pages/home/cert",
  284. "style" :
  285. {
  286. "navigationBarTitleText": "资质证明",
  287. "enablePullDownRefresh": false
  288. }
  289. }
  290. ,{
  291. "path" : "pages/shopping/confirmPackageOrder",
  292. "style" :
  293. {
  294. "navigationBarTitleText": "确认支付",
  295. "enablePullDownRefresh": false
  296. }
  297. }
  298. ,{
  299. "path" : "pages/shopping/confirmCreateOrder",
  300. "style" :
  301. {
  302. "navigationBarTitleText": "确认订单",
  303. "enablePullDownRefresh": false
  304. }
  305. }
  306. ],
  307. "subPackages": [
  308. {
  309. "root": "pages_user",
  310. "pages": [
  311. {
  312. "path": "user/addPatient",
  313. "style": {
  314. "navigationBarTitleText": "创建就诊人",
  315. "app-plus": {
  316. "titleNView": false
  317. }
  318. }
  319. }
  320. ,{
  321. "path" : "user/message",
  322. "style" :
  323. {
  324. "navigationBarTitleText": "消息",
  325. "enablePullDownRefresh": false
  326. }
  327. }
  328. ,{
  329. "path" : "user/msgDetail",
  330. "style" :
  331. {
  332. "navigationBarTitleText": "系统消息",
  333. "enablePullDownRefresh": false
  334. }
  335. }
  336. ,{
  337. "path" : "user/storeOrder",
  338. "style" :
  339. {
  340. "navigationBarTitleText": "我的订单",
  341. "enablePullDownRefresh": false
  342. }
  343. }
  344. ,{
  345. "path" : "user/storeOrderDetail",
  346. "style" :
  347. {
  348. "navigationBarTitleText": "订单详情",
  349. "navigationStyle": "custom",
  350. "enablePullDownRefresh": false
  351. }
  352. }
  353. ,{
  354. "path" : "user/doctorOrder",
  355. "style" :
  356. {
  357. "navigationBarTitleText": "问诊列表",
  358. "enablePullDownRefresh": false
  359. }
  360. }
  361. ,{
  362. "path" : "user/patient",
  363. "style" :
  364. {
  365. "navigationBarTitleText": "病人列表",
  366. "enablePullDownRefresh": false
  367. }
  368. }
  369. ,{
  370. "path" : "user/addAddress",
  371. "style" :
  372. {
  373. "navigationBarTitleText": "新建收货地址",
  374. "enablePullDownRefresh": false
  375. }
  376. }
  377. ,{
  378. "path" : "user/address",
  379. "style" :
  380. {
  381. "navigationBarTitleText": "收货地址",
  382. "enablePullDownRefresh": false
  383. }
  384. }
  385. ,{
  386. "path" : "user/integral",
  387. "style" :
  388. {
  389. "navigationBarTitleText": "我的积分",
  390. "navigationStyle": "custom",
  391. "enablePullDownRefresh": false
  392. }
  393. }
  394. ,{
  395. "path" : "user/refundOrderList",
  396. "style" :
  397. {
  398. "navigationBarTitleText": "售后订单",
  399. "enablePullDownRefresh": false
  400. }
  401. }
  402. ,{
  403. "path" : "user/refundOrderDetail",
  404. "style" :
  405. {
  406. "navigationBarTitleText": "处理进度",
  407. "navigationStyle": "custom",
  408. "enablePullDownRefresh": false
  409. }
  410. }
  411. ,{
  412. "path" : "user/refundOrderLogs",
  413. "style" :
  414. {
  415. "navigationBarTitleText": "退款详情",
  416. "navigationStyle": "custom",
  417. "enablePullDownRefresh": false
  418. }
  419. }
  420. ,{
  421. "path" : "user/storeOrderDelivery",
  422. "style" :
  423. {
  424. "navigationBarTitleText": "物流信息",
  425. "navigationStyle": "custom",
  426. "enablePullDownRefresh": false
  427. }
  428. }
  429. ,{
  430. "path" : "user/refundOrder",
  431. "style" :
  432. {
  433. "navigationBarTitleText": "申请售后",
  434. "enablePullDownRefresh": false
  435. }
  436. }
  437. ,{
  438. "path" : "user/prescribeOrder",
  439. "style" :
  440. {
  441. "navigationBarTitleText": "处方单",
  442. "enablePullDownRefresh": false
  443. }
  444. }
  445. ,{
  446. "path" : "user/pay",
  447. "style" :
  448. {
  449. "navigationBarTitleText": "收款",
  450. "enablePullDownRefresh": false
  451. }
  452. }
  453. ,{
  454. "path" : "user/success",
  455. "style" :
  456. {
  457. "navigationBarTitleText": "支付结果",
  458. "enablePullDownRefresh": false
  459. }
  460. }
  461. ,{
  462. "path" : "user/refundOrderProduct",
  463. "style" :
  464. {
  465. "navigationBarTitleText": "订单售后",
  466. "enablePullDownRefresh": false
  467. }
  468. }
  469. ,{
  470. "path" : "user/refundOrderDelivery",
  471. "style" :
  472. {
  473. "navigationBarTitleText": "物流信息",
  474. "enablePullDownRefresh": false
  475. }
  476. }
  477. ,{
  478. "path" : "user/userTui",
  479. "style" :
  480. {
  481. "navigationBarTitleText": "我的推广",
  482. "enablePullDownRefresh": false
  483. }
  484. }
  485. ,{
  486. "path" : "user/userTuiProduct",
  487. "style" :
  488. {
  489. "navigationBarTitleText": "推广商品",
  490. "enablePullDownRefresh": false
  491. }
  492. }
  493. ,{
  494. "path" : "user/userTuiImg",
  495. "style" :
  496. {
  497. "navigationBarTitleText": "推广海报",
  498. "enablePullDownRefresh": false
  499. }
  500. }
  501. ,{
  502. "path" : "user/userTuiList",
  503. "style" :
  504. {
  505. "navigationBarTitleText": "我的推荐人",
  506. "enablePullDownRefresh": false
  507. }
  508. }
  509. ,{
  510. "path" : "user/userTuiMoneyList",
  511. "style" :
  512. {
  513. "navigationBarTitleText": "佣金记录",
  514. "enablePullDownRefresh": false
  515. }
  516. }
  517. ,{
  518. "path" : "user/userTuiOrderList",
  519. "style" :
  520. {
  521. "navigationBarTitleText": "订单记录",
  522. "enablePullDownRefresh": false
  523. }
  524. }
  525. ,{
  526. "path" : "user/storeProductRelation",
  527. "style" :
  528. {
  529. "navigationBarTitleText": "我的足迹",
  530. "enablePullDownRefresh": false
  531. }
  532. }
  533. ,{
  534. "path" : "user/personInfo",
  535. "style" :
  536. {
  537. "navigationBarTitleText": "个人信息",
  538. "enablePullDownRefresh": false
  539. }
  540. }
  541. ,{
  542. "path" : "user/userTuiMoney",
  543. "style" :
  544. {
  545. "navigationBarTitleText": "提现管理",
  546. "enablePullDownRefresh": false
  547. }
  548. }
  549. ,{
  550. "path" : "user/userTuiExtractLog",
  551. "style" :
  552. {
  553. "navigationBarTitleText": "提现记录",
  554. "enablePullDownRefresh": false
  555. }
  556. }
  557. ,{
  558. "path" : "user/doc",
  559. "style" :
  560. {
  561. "navigationBarTitleText": "健康档案",
  562. "enablePullDownRefresh": false
  563. }
  564. }
  565. ,{
  566. "path" : "user/addDoc",
  567. "style" :
  568. {
  569. "navigationBarTitleText": "创建健康档案",
  570. "enablePullDownRefresh": false
  571. }
  572. }
  573. ,{
  574. "path" : "user/docDetail",
  575. "style" :
  576. {
  577. "navigationBarTitleText": "健康档案",
  578. "navigationBarBackgroundColor": "#dff9f5",
  579. "enablePullDownRefresh": false
  580. }
  581. }
  582. ,{
  583. "path" : "user/docRecord",
  584. "style":
  585. {
  586. "navigationBarTitleText": "健康记录",
  587. "enablePullDownRefresh": false
  588. }
  589. }
  590. ,{
  591. "path" : "user/addDocRecord",
  592. "style" :
  593. {
  594. "navigationBarTitleText": "添加健康记录",
  595. "enablePullDownRefresh": false
  596. }
  597. }
  598. ,{
  599. "path" : "user/userTuiAdd",
  600. "style" :
  601. {
  602. "navigationBarTitleText": "申请推广员",
  603. "enablePullDownRefresh": false
  604. }
  605. }
  606. ,{
  607. "path" : "user/paymentOrderRemain",
  608. "style" :
  609. {
  610. "navigationBarTitleText": "支付尾款",
  611. "enablePullDownRefresh": false
  612. }
  613. }
  614. ,{
  615. "path" : "user/otherPaymentOrder",
  616. "style" :
  617. {
  618. "navigationBarTitleText": "亲友代付",
  619. "enablePullDownRefresh": false
  620. }
  621. }
  622. ,{
  623. "path" : "user/otherPaySuccess",
  624. "style" :
  625. {
  626. "navigationBarTitleText": "支付成功",
  627. "enablePullDownRefresh": false
  628. }
  629. }
  630. ,{
  631. "path" : "user/otherPaymentOrderRemain",
  632. "style" :
  633. {
  634. "navigationBarTitleText": "亲友代付尾款",
  635. "enablePullDownRefresh": false
  636. }
  637. }
  638. ,{
  639. "path" : "user/userShareList",
  640. "style" :
  641. {
  642. "navigationBarTitleText": "分享榜",
  643. "enablePullDownRefresh": false,
  644. "navigationStyle": "custom"
  645. }
  646. }
  647. ]
  648. },
  649. {
  650. "root": "pages_company",
  651. "pages": [
  652. {
  653. "path": "auth/login",
  654. "style": {
  655. "navigationBarTitleText": "销售员登录",
  656. "app-plus": {
  657. "titleNView": false
  658. }
  659. }
  660. },
  661. {
  662. "path": "index",
  663. "style": {
  664. "navigationBarTitleText": "销售管理首页",
  665. "app-plus": {
  666. "titleNView": false
  667. }
  668. }
  669. },
  670. {
  671. "path": "storeOrder",
  672. "style": {
  673. "navigationBarTitleText": "订单管理",
  674. "app-plus": {
  675. "titleNView": false
  676. }
  677. }
  678. }
  679. ,{
  680. "path" : "storeOrderDetail",
  681. "style" :
  682. {
  683. "navigationBarTitleText": "订单详情",
  684. "navigationStyle": "custom",
  685. "enablePullDownRefresh": false
  686. }
  687. },
  688. {
  689. "path": "storeProductPackage",
  690. "style": {
  691. "navigationBarTitleText": "商品套餐",
  692. "app-plus": {
  693. "titleNView": false
  694. }
  695. }
  696. },
  697. {
  698. "path": "storeProductPackageDetails",
  699. "style": {
  700. "navigationBarTitleText": "套餐详情",
  701. "app-plus": {
  702. "titleNView": false
  703. }
  704. }
  705. },
  706. {
  707. "path": "coupon",
  708. "style": {
  709. "navigationBarTitleText": "优惠券",
  710. "app-plus": {
  711. "titleNView": false
  712. }
  713. }
  714. },
  715. {
  716. "path": "couponDetails",
  717. "style": {
  718. "navigationBarTitleText": "优惠券详情",
  719. "app-plus": {
  720. "titleNView": false
  721. }
  722. }
  723. },
  724. {
  725. "path": "order/productList",
  726. "style": {
  727. "navigationBarTitleText": "商品列表",
  728. "app-plus": {
  729. "titleNView": false
  730. }
  731. }
  732. },
  733. {
  734. "path": "order/productDetails",
  735. "style": {
  736. "navigationBarTitleText": "商品详情",
  737. "app-plus": {
  738. "titleNView": false
  739. }
  740. }
  741. },
  742. {
  743. "path": "order/cart",
  744. "style": {
  745. "navigationBarTitleText": "购物车",
  746. "app-plus": {
  747. "titleNView": false
  748. }
  749. }
  750. },
  751. {
  752. "path": "order/confirmOrder",
  753. "style": {
  754. "navigationBarTitleText": "推荐订单信息",
  755. "app-plus": {
  756. "titleNView": false
  757. }
  758. }
  759. },
  760. {
  761. "path": "order/confirmCompanyOrder",
  762. "style": {
  763. "navigationBarTitleText": "推荐订单",
  764. "app-plus": {
  765. "titleNView": false
  766. }
  767. }
  768. },
  769. {
  770. "path": "order/coupon",
  771. "style": {
  772. "navigationBarTitleText": "制单优惠券",
  773. "app-plus": {
  774. "titleNView": false
  775. }
  776. }
  777. },
  778. {
  779. "path": "order/productShowDetails",
  780. "style": {
  781. "navigationBarTitleText": "商品详情",
  782. "app-plus": {
  783. "titleNView": false
  784. }
  785. }
  786. },
  787. {
  788. "path": "alipayImg",
  789. "style": {
  790. "navigationBarTitleText": "支付宝收款",
  791. "app-plus": {
  792. "titleNView": false
  793. }
  794. }
  795. },
  796. {
  797. "path": "card",
  798. "style": {
  799. "navigationBarTitleText": "销售名片",
  800. "app-plus": {
  801. "titleNView": false
  802. }
  803. }
  804. }
  805. ]
  806. },
  807. {
  808. "root": "pages_shopping",
  809. "pages": [
  810. {
  811. "path" : "shopping/coupon",
  812. "style" :
  813. {
  814. "navigationBarTitleText": "优惠券",
  815. "enablePullDownRefresh": false
  816. }
  817. }
  818. ,{
  819. "path" : "shopping/myCoupon",
  820. "style" :
  821. {
  822. "navigationBarTitleText": "我的优惠券",
  823. "enablePullDownRefresh": false
  824. }
  825. }
  826. ,{
  827. "path" : "shopping/activityDetails",
  828. "style" :
  829. {
  830. "navigationBarTitleText": "活动",
  831. "enablePullDownRefresh": false
  832. }
  833. }
  834. ,{
  835. "path" : "shopping/productSalesList",
  836. "style" :
  837. {
  838. "navigationBarTitleText": "药品排行榜",
  839. "enablePullDownRefresh": false
  840. }
  841. }
  842. ]
  843. }
  844. ],
  845. "globalStyle": {
  846. "navigationBarTextStyle": "black",
  847. "navigationBarTitleText": "芳华佳选",
  848. "navigationBarBackgroundColor": "#FFFFFF",
  849. "backgroundColor": "#FFFFFF"
  850. },
  851. "tabBar": {
  852. "color": "#666666",
  853. "selectedColor": "#2BC7B9",
  854. "borderStyle": "white",
  855. "backgroundColor": "#ffffff",
  856. "height": "64px",
  857. "fontSize":"12px",
  858. "iconWidth":"18px",
  859. "spacing": "4px",
  860. "list": [{
  861. "pagePath": "pages/home/index",
  862. "iconPath": "/static/images/home.png",
  863. "selectedIconPath": "/static/images/home_sel.png",
  864. "text": "首页"
  865. },
  866. // {
  867. // "pagePath": "pages/home/companyInfo",
  868. // "iconPath": "/static/images/health.png",
  869. // "selectedIconPath": "/static/images/health_sel.png",
  870. // "text": "企业理念"
  871. // },
  872. {
  873. "pagePath": "pages/shopping/cart",
  874. "iconPath": "/static/images/cart.png",
  875. "selectedIconPath": "/static/images/cart_sel.png",
  876. "text": "购物车"
  877. },
  878. // {
  879. // "pagePath": "pages/doctor/index",
  880. // "iconPath": "/static/images/see_doctor.png",
  881. // "selectedIconPath": "/static/images/see_doctor_sel.png",
  882. // "text": "问诊"
  883. // },
  884. {
  885. "pagePath": "pages/shopping/index",
  886. "iconPath": "/static/images/shop_mall.png",
  887. "selectedIconPath": "/static/images/shop_mall_sel.png",
  888. "text": "健康商城"
  889. },
  890. {
  891. "pagePath": "pages/user/index",
  892. "iconPath": "/static/images/my.png",
  893. "selectedIconPath": "/static/images/my_sel.png",
  894. "text": "会员中心"
  895. }
  896. ]
  897. }
  898. }