pages.json 23 KB

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