pages.json 23 KB

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