pages.json 26 KB

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