pages.json 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/common/launch"
  8. },
  9. {
  10. "path": "pages/auth/login",
  11. "style": {
  12. "navigationBarTitleText": "授权登录",
  13. "navigationStyle": "custom"
  14. }
  15. },
  16. {
  17. "path": "pages/auth/wxLogin",
  18. "style": {
  19. "navigationBarTitleText": "公众号授权",
  20. "navigationStyle": "custom"
  21. }
  22. },
  23. {
  24. "path": "pages/home/index",
  25. "style": {
  26. "navigationBarTitleText": "壹柒玖康养集团",
  27. "enablePullDownRefresh": false,
  28. "navigationStyle": "custom",
  29. "app-plus": {
  30. "titleNView": false
  31. }
  32. }
  33. },
  34. {
  35. "path" : "pages/home/doctorCase",
  36. "style" :
  37. {
  38. "navigationBarTitleText": "问诊案例",
  39. "app-plus": {
  40. "titleNView": false
  41. }
  42. }
  43. },
  44. {
  45. "path" : "pages/home/productSearch",
  46. "style" :
  47. {
  48. "navigationBarTitleText": "商品搜索",
  49. "app-plus": {
  50. "titleNView": false
  51. }
  52. }
  53. },
  54. {
  55. "path" : "pages/home/productList",
  56. "style" :
  57. {
  58. "navigationBarTitleText": "商品列表",
  59. "app-plus": {
  60. "titleNView": false
  61. }
  62. }
  63. },
  64. {
  65. "path" : "pages/healthy/index",
  66. "style" :
  67. {
  68. "navigationBarTitleText": "健康知识",
  69. "enablePullDownRefresh": false,
  70. "navigationStyle": "custom",
  71. "app-plus": {
  72. "titleNView": false
  73. }
  74. }
  75. },
  76. {
  77. "path" : "pages/healthy/detail",
  78. "style" :
  79. {
  80. "navigationBarTitleText": "",
  81. "enablePullDownRefresh": false,
  82. "app-plus": {
  83. "titleNView": false
  84. }
  85. }
  86. },
  87. {
  88. "path" : "pages/healthy/readUsers",
  89. "style" :
  90. {
  91. "navigationBarTitleText": "阅读用户",
  92. "enablePullDownRefresh": false,
  93. "app-plus": {
  94. "titleNView": false
  95. }
  96. }
  97. },
  98. {
  99. "path" : "pages/shopping/index",
  100. "style" :
  101. {
  102. "navigationBarTitleText": "商城",
  103. "navigationStyle": "custom",
  104. "enablePullDownRefresh": false
  105. }
  106. },
  107. {
  108. "path": "pages/user/index",
  109. "style": {
  110. "navigationBarTitleText": "我的",
  111. "navigationStyle": "custom",
  112. "app-plus": {
  113. "titleNView": false
  114. }
  115. }
  116. }
  117. ,{
  118. "path" : "pages/shopping/productDetails",
  119. "style" :
  120. {
  121. "navigationBarTitleText": "商品详情",
  122. "enablePullDownRefresh": false
  123. }
  124. }
  125. ,{
  126. "path" : "pages/shopping/cart",
  127. "style" :
  128. {
  129. "navigationBarTitleText": "购物车",
  130. "enablePullDownRefresh": false
  131. }
  132. }
  133. ,{
  134. "path" : "pages/shopping/productList",
  135. "style" :
  136. {
  137. "navigationBarTitleText": "药品列表",
  138. "enablePullDownRefresh": false
  139. }
  140. }
  141. ,{
  142. "path" : "pages/shopping/confirmOrder",
  143. "style" :
  144. {
  145. "navigationBarTitleText": "确认订单",
  146. "enablePullDownRefresh": false
  147. }
  148. }
  149. ,{
  150. "path" : "pages/shopping/paymentOrder",
  151. "style" :
  152. {
  153. "navigationBarTitleText": "支付订单",
  154. "enablePullDownRefresh": false
  155. }
  156. }
  157. ,{
  158. "path" : "pages/shopping/payOrder",
  159. "style" :
  160. {
  161. "navigationBarTitleText": "推荐订单支付",
  162. "enablePullDownRefresh": false
  163. }
  164. }
  165. ,{
  166. "path" : "pages/shopping/prescribe",
  167. "style" :
  168. {
  169. "navigationBarTitleText": "填写处方信息",
  170. "navigationStyle": "custom",
  171. "enablePullDownRefresh": false
  172. }
  173. }
  174. ,{
  175. "path" : "pages/shopping/success",
  176. "style" :
  177. {
  178. "navigationBarTitleText": "支付成功",
  179. "enablePullDownRefresh": false
  180. }
  181. }
  182. ,{
  183. "path" : "pages/home/content",
  184. "style" :
  185. {
  186. "navigationBarTitleText": "详情",
  187. "enablePullDownRefresh": false
  188. }
  189. }
  190. ,{
  191. "path" : "pages/home/h5",
  192. "style" :
  193. {
  194. "navigationBarTitleText": "详情",
  195. "enablePullDownRefresh": false
  196. }
  197. }
  198. ,{
  199. "path" : "pages/home/cert",
  200. "style" :
  201. {
  202. "navigationBarTitleText": "资质证明",
  203. "enablePullDownRefresh": false
  204. }
  205. }
  206. ,{
  207. "path" : "pages/shopping/confirmPackageOrder",
  208. "style" :
  209. {
  210. "navigationBarTitleText": "确认支付",
  211. "enablePullDownRefresh": false
  212. }
  213. }
  214. ,{
  215. "path" : "pages/shopping/confirmCreateOrder",
  216. "style" :
  217. {
  218. "navigationBarTitleText": "确认订单",
  219. "enablePullDownRefresh": false
  220. }
  221. },
  222. {
  223. "path" : "pages/user/test",
  224. "style" :
  225. {
  226. "navigationBarTitleText": "测一测",
  227. "app-plus": {
  228. "titleNView": false
  229. }
  230. }
  231. },
  232. {
  233. "path" : "pages/doctor/doctorQr",
  234. "style" :
  235. {
  236. "navigationBarTitleText": "用药咨询",
  237. "app-plus": {
  238. "titleNView": false
  239. }
  240. }
  241. }
  242. ],
  243. "subPackages": [
  244. {
  245. "root": "pages_index",
  246. "pages": [
  247. {
  248. "path" : "index/medicatedFoodList",
  249. "style" :
  250. {
  251. "navigationBarTitleText": "药膳食疗",
  252. "app-plus": {
  253. "titleNView": false
  254. }
  255. }
  256. },
  257. {
  258. "path" : "index/medicatedFoodDetails",
  259. "style" :
  260. {
  261. "navigationBarTitleText": "药膳食疗",
  262. "app-plus": {
  263. "titleNView": false
  264. }
  265. }
  266. },
  267. {
  268. "path" : "index/vesselList",
  269. "style" :
  270. {
  271. "navigationBarTitleText": "经络穴位",
  272. "app-plus": {
  273. "titleNView": false
  274. }
  275. }
  276. },
  277. {
  278. "path" : "index/vesselDetails",
  279. "style" :
  280. {
  281. "navigationBarTitleText": "经络穴位",
  282. "app-plus": {
  283. "titleNView": false
  284. }
  285. }
  286. },
  287. {
  288. "path" : "index/questionsList",
  289. "style" :
  290. {
  291. "navigationBarTitleText": "问答专区",
  292. "app-plus": {
  293. "titleNView": false
  294. }
  295. }
  296. },
  297. {
  298. "path" : "index/questionsDetails",
  299. "style" :
  300. {
  301. "navigationBarTitleText": "问答专区",
  302. "app-plus": {
  303. "titleNView": false
  304. }
  305. }
  306. },
  307. {
  308. "path" : "index/diseaseList",
  309. "style" :
  310. {
  311. "navigationBarTitleText": "疾病列表",
  312. "app-plus": {
  313. "titleNView": false
  314. }
  315. }
  316. },
  317. {
  318. "path" : "index/diseaseDetails",
  319. "style" :
  320. {
  321. "navigationBarTitleText": "疾病",
  322. "app-plus": {
  323. "titleNView": false
  324. }
  325. }
  326. },
  327. {
  328. "path" : "index/chineseMedicineList",
  329. "style" :
  330. {
  331. "navigationBarTitleText": "中药图解",
  332. "app-plus": {
  333. "titleNView": false
  334. }
  335. }
  336. },
  337. {
  338. "path" : "index/chineseMedicineDetails",
  339. "style" :
  340. {
  341. "navigationBarTitleText": "中药图解",
  342. "app-plus": {
  343. "titleNView": false
  344. }
  345. }
  346. },
  347. {
  348. "path" : "index/famousPrescribeList",
  349. "style" :
  350. {
  351. "navigationBarTitleText": "名方今用",
  352. "app-plus": {
  353. "titleNView": false
  354. }
  355. }
  356. },
  357. {
  358. "path" : "index/famousPrescribeDetails",
  359. "style" :
  360. {
  361. "navigationBarTitleText": "名方今用",
  362. "app-plus": {
  363. "titleNView": false
  364. }
  365. }
  366. },
  367. {
  368. "path" : "index/test",
  369. "style" :
  370. {
  371. "navigationBarTitleText": "测一测",
  372. "app-plus": {
  373. "titleNView": false
  374. }
  375. }
  376. },
  377. {
  378. "path" : "index/testList",
  379. "style" :
  380. {
  381. "navigationBarTitleText": "测一测",
  382. "app-plus": {
  383. "titleNView": false
  384. }
  385. }
  386. },
  387. {
  388. "path" : "index/testDetails",
  389. "style" :
  390. {
  391. "navigationBarTitleText": "测一测",
  392. "app-plus": {
  393. "titleNView": false
  394. }
  395. }
  396. },
  397. {
  398. "path" : "index/testResult",
  399. "style" :
  400. {
  401. "navigationBarTitleText": "测试结果",
  402. "app-plus": {
  403. "titleNView": false
  404. }
  405. }
  406. },
  407. {
  408. "path" : "index/articleList",
  409. "style" :
  410. {
  411. "navigationBarTitleText": "健康知识",
  412. "app-plus": {
  413. "titleNView": false
  414. }
  415. }
  416. },
  417. {
  418. "path" : "index/articleDetails",
  419. "style" :
  420. {
  421. "navigationBarTitleText": "文章详情",
  422. "app-plus": {
  423. "titleNView": false
  424. }
  425. }
  426. },
  427. {
  428. "path" : "index/doctorArticleList",
  429. "style" :
  430. {
  431. "navigationBarTitleText": "康复医案",
  432. "app-plus": {
  433. "titleNView": false
  434. }
  435. }
  436. },
  437. {
  438. "path" : "index/doctorArticleDetails",
  439. "style" :
  440. {
  441. "navigationBarTitleText": "康复医案",
  442. "app-plus": {
  443. "titleNView": false
  444. }
  445. }
  446. }
  447. ]
  448. },
  449. {
  450. "root": "pages_user",
  451. "pages": [
  452. {
  453. "path": "user/addPatient",
  454. "style": {
  455. "navigationBarTitleText": "创建就诊人",
  456. "app-plus": {
  457. "titleNView": false
  458. }
  459. }
  460. }
  461. ,{
  462. "path" : "user/message",
  463. "style" :
  464. {
  465. "navigationBarTitleText": "消息",
  466. "enablePullDownRefresh": false
  467. }
  468. }
  469. ,{
  470. "path" : "user/msgDetail",
  471. "style" :
  472. {
  473. "navigationBarTitleText": "系统消息",
  474. "enablePullDownRefresh": false
  475. }
  476. }
  477. ,{
  478. "path" : "user/storeOrder",
  479. "style" :
  480. {
  481. "navigationBarTitleText": "我的订单",
  482. "enablePullDownRefresh": false
  483. }
  484. }
  485. ,{
  486. "path" : "user/storeOrderDetail",
  487. "style" :
  488. {
  489. "navigationBarTitleText": "订单详情",
  490. "navigationStyle": "custom",
  491. "enablePullDownRefresh": false
  492. }
  493. }
  494. ,{
  495. "path" : "user/doctorOrder",
  496. "style" :
  497. {
  498. "navigationBarTitleText": "问诊列表",
  499. "enablePullDownRefresh": false
  500. }
  501. }
  502. ,{
  503. "path" : "user/patient",
  504. "style" :
  505. {
  506. "navigationBarTitleText": "病人列表",
  507. "enablePullDownRefresh": false
  508. }
  509. }
  510. ,{
  511. "path" : "user/addAddress",
  512. "style" :
  513. {
  514. "navigationBarTitleText": "新建收货地址",
  515. "enablePullDownRefresh": false
  516. }
  517. }
  518. ,{
  519. "path" : "user/address",
  520. "style" :
  521. {
  522. "navigationBarTitleText": "收货地址",
  523. "enablePullDownRefresh": false
  524. }
  525. }
  526. ,{
  527. "path" : "user/integral",
  528. "style" :
  529. {
  530. "navigationBarTitleText": "我的积分",
  531. "navigationStyle": "custom",
  532. "enablePullDownRefresh": false
  533. }
  534. }
  535. ,{
  536. "path" : "user/refundOrderList",
  537. "style" :
  538. {
  539. "navigationBarTitleText": "售后订单",
  540. "enablePullDownRefresh": false
  541. }
  542. }
  543. ,{
  544. "path" : "user/refundOrderDetail",
  545. "style" :
  546. {
  547. "navigationBarTitleText": "处理进度",
  548. "navigationStyle": "custom",
  549. "enablePullDownRefresh": false
  550. }
  551. }
  552. ,{
  553. "path" : "user/refundOrderLogs",
  554. "style" :
  555. {
  556. "navigationBarTitleText": "退款详情",
  557. "navigationStyle": "custom",
  558. "enablePullDownRefresh": false
  559. }
  560. }
  561. ,{
  562. "path" : "user/storeOrderDelivery",
  563. "style" :
  564. {
  565. "navigationBarTitleText": "物流信息",
  566. "navigationStyle": "custom",
  567. "enablePullDownRefresh": false
  568. }
  569. }
  570. ,{
  571. "path" : "user/refundOrder",
  572. "style" :
  573. {
  574. "navigationBarTitleText": "申请售后",
  575. "enablePullDownRefresh": false
  576. }
  577. }
  578. ,{
  579. "path" : "user/prescribeOrder",
  580. "style" :
  581. {
  582. "navigationBarTitleText": "处方单",
  583. "enablePullDownRefresh": false
  584. }
  585. }
  586. ,{
  587. "path" : "user/pay",
  588. "style" :
  589. {
  590. "navigationBarTitleText": "收款",
  591. "enablePullDownRefresh": false
  592. }
  593. }
  594. ,{
  595. "path" : "user/success",
  596. "style" :
  597. {
  598. "navigationBarTitleText": "支付结果",
  599. "enablePullDownRefresh": false
  600. }
  601. }
  602. ,{
  603. "path" : "user/refundOrderProduct",
  604. "style" :
  605. {
  606. "navigationBarTitleText": "订单售后",
  607. "enablePullDownRefresh": false
  608. }
  609. }
  610. ,{
  611. "path" : "user/refundOrderDelivery",
  612. "style" :
  613. {
  614. "navigationBarTitleText": "物流信息",
  615. "enablePullDownRefresh": false
  616. }
  617. }
  618. ,{
  619. "path" : "user/userTui",
  620. "style" :
  621. {
  622. "navigationBarTitleText": "我的推广",
  623. "enablePullDownRefresh": false
  624. }
  625. }
  626. ,{
  627. "path" : "user/userTuiProduct",
  628. "style" :
  629. {
  630. "navigationBarTitleText": "推广商品",
  631. "enablePullDownRefresh": false
  632. }
  633. }
  634. ,{
  635. "path" : "user/userTuiImg",
  636. "style" :
  637. {
  638. "navigationBarTitleText": "推广海报",
  639. "enablePullDownRefresh": false
  640. }
  641. }
  642. ,{
  643. "path" : "user/userTuiList",
  644. "style" :
  645. {
  646. "navigationBarTitleText": "我的推荐人",
  647. "enablePullDownRefresh": false
  648. }
  649. }
  650. ,{
  651. "path" : "user/userTuiMoneyList",
  652. "style" :
  653. {
  654. "navigationBarTitleText": "佣金记录",
  655. "enablePullDownRefresh": false
  656. }
  657. }
  658. ,{
  659. "path" : "user/userTuiOrderList",
  660. "style" :
  661. {
  662. "navigationBarTitleText": "订单记录",
  663. "enablePullDownRefresh": false
  664. }
  665. }
  666. ,{
  667. "path" : "user/storeProductRelation",
  668. "style" :
  669. {
  670. "navigationBarTitleText": "我的足迹",
  671. "enablePullDownRefresh": false
  672. }
  673. }
  674. ,{
  675. "path" : "user/personInfo",
  676. "style" :
  677. {
  678. "navigationBarTitleText": "个人信息",
  679. "enablePullDownRefresh": false
  680. }
  681. }
  682. ,{
  683. "path" : "user/userTuiMoney",
  684. "style" :
  685. {
  686. "navigationBarTitleText": "提现管理",
  687. "enablePullDownRefresh": false
  688. }
  689. }
  690. ,{
  691. "path" : "user/userTuiExtractLog",
  692. "style" :
  693. {
  694. "navigationBarTitleText": "提现记录",
  695. "enablePullDownRefresh": false
  696. }
  697. }
  698. ,{
  699. "path" : "user/doc",
  700. "style" :
  701. {
  702. "navigationBarTitleText": "健康档案",
  703. "enablePullDownRefresh": false
  704. }
  705. }
  706. ,{
  707. "path" : "user/addDoc",
  708. "style" :
  709. {
  710. "navigationBarTitleText": "创建健康档案",
  711. "enablePullDownRefresh": false
  712. }
  713. }
  714. ,{
  715. "path" : "user/docDetail",
  716. "style" :
  717. {
  718. "navigationBarTitleText": "健康档案",
  719. "navigationBarBackgroundColor": "#dff9f5",
  720. "enablePullDownRefresh": false
  721. }
  722. }
  723. ,{
  724. "path" : "user/docRecord",
  725. "style":
  726. {
  727. "navigationBarTitleText": "健康记录",
  728. "enablePullDownRefresh": false
  729. }
  730. }
  731. ,{
  732. "path" : "user/addDocRecord",
  733. "style" :
  734. {
  735. "navigationBarTitleText": "添加健康记录",
  736. "enablePullDownRefresh": false
  737. }
  738. }
  739. ,{
  740. "path" : "user/userTuiAdd",
  741. "style" :
  742. {
  743. "navigationBarTitleText": "申请推广员",
  744. "enablePullDownRefresh": false
  745. }
  746. }
  747. ,{
  748. "path" : "user/paymentOrderRemain",
  749. "style" :
  750. {
  751. "navigationBarTitleText": "支付尾款",
  752. "enablePullDownRefresh": false
  753. }
  754. }
  755. ,{
  756. "path" : "user/otherPaymentOrder",
  757. "style" :
  758. {
  759. "navigationBarTitleText": "亲友代付",
  760. "enablePullDownRefresh": false
  761. }
  762. }
  763. ,{
  764. "path" : "user/otherPaySuccess",
  765. "style" :
  766. {
  767. "navigationBarTitleText": "支付成功",
  768. "enablePullDownRefresh": false
  769. }
  770. }
  771. ,{
  772. "path" : "user/otherPaymentOrderRemain",
  773. "style" :
  774. {
  775. "navigationBarTitleText": "亲友代付尾款",
  776. "enablePullDownRefresh": false
  777. }
  778. }
  779. ]
  780. },
  781. {
  782. "root": "pages_company",
  783. "pages": [
  784. {
  785. "path": "auth/login",
  786. "style": {
  787. "navigationBarTitleText": "销售员登录",
  788. "app-plus": {
  789. "titleNView": false
  790. }
  791. }
  792. },
  793. {
  794. "path": "index",
  795. "style": {
  796. "navigationBarTitleText": "销售管理首页",
  797. "navigationStyle": "custom",
  798. "app-plus": {
  799. "titleNView": false
  800. }
  801. }
  802. },
  803. {
  804. "path": "clientList",
  805. "style": {
  806. "navigationBarTitleText": "我的下级",
  807. "app-plus": {
  808. "titleNView": false
  809. }
  810. }
  811. },
  812. {
  813. "path": "todoList",
  814. "style": {
  815. "navigationBarTitleText": "待办事项",
  816. "app-plus": {
  817. "titleNView": false
  818. }
  819. }
  820. },
  821. {
  822. "path": "clientDetail",
  823. "style": {
  824. "navigationBarTitleText": "客户详情",
  825. "app-plus": {
  826. "titleNView": false
  827. }
  828. }
  829. },
  830. {
  831. "path": "executionRecord",
  832. "style": {
  833. "navigationBarTitleText": "执行记录",
  834. "navigationBarBackgroundColor": "#008FD3",
  835. "navigationBarTextStyle": "white",
  836. "app-plus": {
  837. "titleNView": false
  838. }
  839. }
  840. },
  841. {
  842. "path": "returnRecord",
  843. "style": {
  844. "navigationBarTitleText": "回访记录",
  845. "app-plus": {
  846. "titleNView": false
  847. }
  848. }
  849. },
  850. {
  851. "path": "testRecord",
  852. "style": {
  853. "navigationBarTitleText": "测评记录",
  854. "app-plus": {
  855. "titleNView": false
  856. }
  857. }
  858. },
  859. {
  860. "path": "schedule",
  861. "style": {
  862. "navigationBarTitleText": "日程",
  863. "navigationBarBackgroundColor": "#008FD3",
  864. "navigationBarTextStyle": "white",
  865. "app-plus": {
  866. "titleNView": false
  867. }
  868. }
  869. },
  870. {
  871. "path": "addSchedule",
  872. "style": {
  873. "navigationBarTitleText": "添加日程",
  874. "navigationBarBackgroundColor": "#008FD3",
  875. "navigationBarTextStyle": "white",
  876. "app-plus": {
  877. "titleNView": false
  878. }
  879. }
  880. },
  881. {
  882. "path": "storeOrder",
  883. "style": {
  884. "navigationBarTitleText": "订单管理",
  885. "app-plus": {
  886. "titleNView": false
  887. }
  888. }
  889. }
  890. ,{
  891. "path" : "storeOrderDetail",
  892. "style" :
  893. {
  894. "navigationBarTitleText": "订单详情",
  895. "navigationStyle": "custom",
  896. "enablePullDownRefresh": false
  897. }
  898. },
  899. {
  900. "path": "storeProductPackage",
  901. "style": {
  902. "navigationBarTitleText": "商品套餐",
  903. "app-plus": {
  904. "titleNView": false
  905. }
  906. }
  907. },
  908. {
  909. "path": "storeProductPackageDetails",
  910. "style": {
  911. "navigationBarTitleText": "套餐详情",
  912. "app-plus": {
  913. "titleNView": false
  914. }
  915. }
  916. },
  917. {
  918. "path": "coupon",
  919. "style": {
  920. "navigationBarTitleText": "优惠券",
  921. "app-plus": {
  922. "titleNView": false
  923. }
  924. }
  925. },
  926. {
  927. "path": "couponDetails",
  928. "style": {
  929. "navigationBarTitleText": "优惠券详情",
  930. "app-plus": {
  931. "titleNView": false
  932. }
  933. }
  934. },
  935. {
  936. "path": "order/productList",
  937. "style": {
  938. "navigationBarTitleText": "商品列表",
  939. "app-plus": {
  940. "titleNView": false
  941. }
  942. }
  943. },
  944. {
  945. "path": "order/productDetails",
  946. "style": {
  947. "navigationBarTitleText": "商品详情",
  948. "app-plus": {
  949. "titleNView": false
  950. }
  951. }
  952. },
  953. {
  954. "path": "order/cart",
  955. "style": {
  956. "navigationBarTitleText": "购物车",
  957. "app-plus": {
  958. "titleNView": false
  959. }
  960. }
  961. },
  962. {
  963. "path": "order/confirmOrder",
  964. "style": {
  965. "navigationBarTitleText": "推荐订单信息",
  966. "app-plus": {
  967. "titleNView": false
  968. }
  969. }
  970. },
  971. {
  972. "path": "order/confirmCompanyOrder",
  973. "style": {
  974. "navigationBarTitleText": "推荐订单",
  975. "app-plus": {
  976. "titleNView": false
  977. }
  978. }
  979. },
  980. {
  981. "path": "order/coupon",
  982. "style": {
  983. "navigationBarTitleText": "制单优惠券",
  984. "app-plus": {
  985. "titleNView": false
  986. }
  987. }
  988. },
  989. {
  990. "path": "order/productShowDetails",
  991. "style": {
  992. "navigationBarTitleText": "商品详情",
  993. "app-plus": {
  994. "titleNView": false
  995. }
  996. }
  997. },
  998. {
  999. "path": "alipayImg",
  1000. "style": {
  1001. "navigationBarTitleText": "支付宝收款",
  1002. "app-plus": {
  1003. "titleNView": false
  1004. }
  1005. }
  1006. },
  1007. {
  1008. "path": "card",
  1009. "style": {
  1010. "navigationBarTitleText": "我的名片",
  1011. "app-plus": {
  1012. "titleNView": false
  1013. }
  1014. }
  1015. }
  1016. ]
  1017. },
  1018. {
  1019. "root": "pages_shopping",
  1020. "pages": [
  1021. {
  1022. "path" : "shopping/coupon",
  1023. "style" :
  1024. {
  1025. "navigationBarTitleText": "优惠券",
  1026. "enablePullDownRefresh": false
  1027. }
  1028. }
  1029. ,{
  1030. "path" : "shopping/myCoupon",
  1031. "style" :
  1032. {
  1033. "navigationBarTitleText": "我的优惠券",
  1034. "enablePullDownRefresh": false
  1035. }
  1036. }
  1037. ,{
  1038. "path" : "shopping/activityDetails",
  1039. "style" :
  1040. {
  1041. "navigationBarTitleText": "活动",
  1042. "enablePullDownRefresh": false
  1043. }
  1044. }
  1045. ,{
  1046. "path" : "store/index",
  1047. "style" :
  1048. {
  1049. "navigationBarTitleText": "",
  1050. "enablePullDownRefresh": false,
  1051. "navigationStyle": "custom"
  1052. }
  1053. }
  1054. ]
  1055. },
  1056. {
  1057. "root": "pages_doctor",
  1058. "pages": [
  1059. {
  1060. "path" : "doctorOrderIM",
  1061. "style" :
  1062. {
  1063. "navigationBarTitleText": "问诊会话",
  1064. "enablePullDownRefresh": false
  1065. }
  1066. },
  1067. {
  1068. "path" : "paymentOrder",
  1069. "style" :
  1070. {
  1071. "navigationBarTitleText": "支付订单",
  1072. "enablePullDownRefresh": false
  1073. }
  1074. },
  1075. {
  1076. "path" : "doctorIm",
  1077. "style" :
  1078. {
  1079. "navigationBarTitleText": "问诊会话",
  1080. "enablePullDownRefresh": false
  1081. }
  1082. },
  1083. {
  1084. "path" : "index",
  1085. "style" :
  1086. {
  1087. "navigationBarTitleText": "问诊",
  1088. "navigationStyle": "custom",
  1089. "enablePullDownRefresh": false
  1090. }
  1091. },
  1092. {
  1093. "path" : "doctorList",
  1094. "style" :
  1095. {
  1096. "navigationBarTitleText": "医生列表",
  1097. "enablePullDownRefresh": false
  1098. }
  1099. },
  1100. {
  1101. "path" : "doctorDetail",
  1102. "style" :
  1103. {
  1104. "navigationBarTitleText": "医生详情",
  1105. "navigationStyle": "custom",
  1106. "enablePullDownRefresh": false
  1107. }
  1108. },
  1109. {
  1110. "path" : "submitOrder",
  1111. "style" :
  1112. {
  1113. "navigationBarTitleText": "发布问诊",
  1114. "enablePullDownRefresh": false
  1115. }
  1116. }
  1117. ]
  1118. },
  1119. {
  1120. "root": "pages_health",
  1121. "pages": [
  1122. {
  1123. "path": "healthConsulting",
  1124. "style": {
  1125. "navigationBarTitleText": "健康咨询",
  1126. "enablePullDownRefresh": false,
  1127. "navigationStyle": "custom",
  1128. "app-plus": {
  1129. "titleNView": false
  1130. }
  1131. }
  1132. },
  1133. {
  1134. "path": "ConsultationDetails",
  1135. "style": {
  1136. "navigationBarTitleText": "病例描述",
  1137. "enablePullDownRefresh": false,
  1138. "app-plus": {
  1139. "titleNView": false
  1140. }
  1141. }
  1142. },
  1143. {
  1144. "path": "healthfiles",
  1145. "style": {
  1146. "navigationBarTitleText": "健康档案",
  1147. "enablePullDownRefresh": false,
  1148. "navigationStyle": "custom",
  1149. "app-plus": {
  1150. "titleNView": false
  1151. }
  1152. }
  1153. },
  1154. {
  1155. "path": "doc",
  1156. "style": {
  1157. "navigationBarTitleText": "添加用户信息",
  1158. "enablePullDownRefresh": false,
  1159. "app-plus": {
  1160. "titleNView": false
  1161. }
  1162. }
  1163. },
  1164. {
  1165. "path": "addDoc",
  1166. "style": {
  1167. "navigationBarTitleText": "健康档案",
  1168. "enablePullDownRefresh": false,
  1169. "app-plus": {
  1170. "titleNView": false
  1171. }
  1172. }
  1173. },{
  1174. "path": "addUser",
  1175. "style": {
  1176. "navigationBarTitleText": "用户信息",
  1177. "enablePullDownRefresh": false,
  1178. "app-plus": {
  1179. "titleNView": false
  1180. }
  1181. }
  1182. },
  1183. {
  1184. "path": "buyOrder",
  1185. "style": {
  1186. "navigationBarTitleText": "购买信息",
  1187. "enablePullDownRefresh": false,
  1188. "app-plus": {
  1189. "titleNView": false
  1190. }
  1191. }
  1192. },
  1193. {
  1194. "path": "addServe",
  1195. "style": {
  1196. "navigationBarTitleText": "商品信息",
  1197. "enablePullDownRefresh": false,
  1198. "app-plus": {
  1199. "titleNView": false
  1200. }
  1201. }
  1202. },
  1203. {
  1204. "path": "addCompetitors",
  1205. "style": {
  1206. "navigationBarTitleText": "竞品信息",
  1207. "enablePullDownRefresh": false,
  1208. "app-plus": {
  1209. "titleNView": false
  1210. }
  1211. }
  1212. }
  1213. ]
  1214. },{
  1215. "root": "pages_echarts",
  1216. "pages": [
  1217. {
  1218. "path": "bloodSugar",
  1219. "style": {
  1220. "navigationBarTitleText": "血糖检测",
  1221. "enablePullDownRefresh": false,
  1222. "navigationStyle": "custom",
  1223. "app-plus": {
  1224. "titleNView": false
  1225. }
  1226. }
  1227. },
  1228. {
  1229. "path": "bloodSugarList",
  1230. "style": {
  1231. "navigationBarTitleText": "血糖数据",
  1232. "enablePullDownRefresh": false,
  1233. "app-plus": {
  1234. "titleNView": false
  1235. }
  1236. }
  1237. },
  1238. {
  1239. "path": "bloodSugarDetail",
  1240. "style": {
  1241. "navigationBarTitleText": "血糖详情",
  1242. "enablePullDownRefresh": false,
  1243. "app-plus": {
  1244. "titleNView": false
  1245. }
  1246. }
  1247. },
  1248. {
  1249. "path": "bloodPressure",
  1250. "style": {
  1251. "navigationBarTitleText": "血压检测",
  1252. "enablePullDownRefresh": false,
  1253. "navigationStyle": "custom",
  1254. "app-plus": {
  1255. "titleNView": false
  1256. }
  1257. }
  1258. },
  1259. {
  1260. "path": "bloodPressureList",
  1261. "style": {
  1262. "navigationBarTitleText": "血压数据",
  1263. "enablePullDownRefresh": false,
  1264. "app-plus": {
  1265. "titleNView": false
  1266. }
  1267. }
  1268. },
  1269. {
  1270. "path": "bloodPressureDetail",
  1271. "style": {
  1272. "navigationBarTitleText": "血压详情",
  1273. "enablePullDownRefresh": false,
  1274. "app-plus": {
  1275. "titleNView": false
  1276. }
  1277. }
  1278. },
  1279. {
  1280. "path": "acid",
  1281. "style": {
  1282. "navigationBarTitleText": "尿酸检测",
  1283. "enablePullDownRefresh": false,
  1284. "navigationStyle": "custom",
  1285. "app-plus": {
  1286. "titleNView": false
  1287. }
  1288. }
  1289. },
  1290. {
  1291. "path": "acidList",
  1292. "style": {
  1293. "navigationBarTitleText": "尿酸数据",
  1294. "enablePullDownRefresh": false,
  1295. "app-plus": {
  1296. "titleNView": false
  1297. }
  1298. }
  1299. },
  1300. {
  1301. "path": "acidDetail",
  1302. "style": {
  1303. "navigationBarTitleText": "尿酸详情",
  1304. "enablePullDownRefresh": false,
  1305. "app-plus": {
  1306. "titleNView": false
  1307. }
  1308. }
  1309. },{
  1310. "path": "waistLine",
  1311. "style": {
  1312. "navigationBarTitleText": "腰围",
  1313. "enablePullDownRefresh": false,
  1314. "navigationStyle": "custom",
  1315. "app-plus": {
  1316. "titleNView": false
  1317. }
  1318. }
  1319. },
  1320. {
  1321. "path": "hips",
  1322. "style": {
  1323. "navigationBarTitleText": "臀围",
  1324. "enablePullDownRefresh": false,
  1325. "navigationStyle": "custom",
  1326. "app-plus": {
  1327. "titleNView": false
  1328. }
  1329. }
  1330. }
  1331. ]
  1332. }
  1333. ],
  1334. "globalStyle": {
  1335. "navigationBarTextStyle": "black",
  1336. "navigationBarTitleText": "壹柒玖康养集团",
  1337. "navigationBarBackgroundColor": "#FFFFFF",
  1338. "backgroundColor": "#FFFFFF"
  1339. },
  1340. "tabBar": {
  1341. "color": "#666666",
  1342. "selectedColor": "#0bb3f2",
  1343. "borderStyle": "white",
  1344. "backgroundColor": "#ffffff",
  1345. "height": "64px",
  1346. "fontSize":"12px",
  1347. "iconWidth":"18px",
  1348. "spacing": "4px",
  1349. "list": [{
  1350. "pagePath": "pages/home/index",
  1351. "iconPath": "/static/tabbar/home.png",
  1352. "selectedIconPath": "/static/tabbar/home_sel.png",
  1353. "text": "首页"
  1354. },
  1355. {
  1356. "pagePath": "pages/healthy/index",
  1357. "iconPath": "/static/tabbar/health.png",
  1358. "selectedIconPath": "/static/tabbar/health_sel.png",
  1359. "text": "健康百科"
  1360. },
  1361. // {
  1362. // "pagePath": "pages/doctor/index",
  1363. // "iconPath": "/static/tabbar/see_doctor.png",
  1364. // "selectedIconPath": "/static/tabbar/see_doctor_sel.png",
  1365. // "text": "问诊"
  1366. // },
  1367. {
  1368. "pagePath": "pages/shopping/index",
  1369. "iconPath": "/static/tabbar/shop_mall.png",
  1370. "selectedIconPath": "/static/tabbar/shop_mall_sel.png",
  1371. "text": "健康商城"
  1372. },
  1373. {
  1374. "pagePath": "pages/user/index",
  1375. "iconPath": "/static/tabbar/my.png",
  1376. "selectedIconPath": "/static/tabbar/my_sel.png",
  1377. "text": "我的"
  1378. }
  1379. ]
  1380. }
  1381. }