pages.json 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106
  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. "path": "live/integral",
  743. "style": {
  744. "navigationBarTitleText": "芳华币",
  745. "enablePullDownRefresh": false
  746. }
  747. },
  748. {
  749. "path": "live/order",
  750. "style": {
  751. "navigationBarTitleText": "我的订单",
  752. "navigationBarTextStyle": "black",
  753. "app-plus": {
  754. "bounce": "none"
  755. }
  756. }
  757. },
  758. {
  759. "path": "live/confirmCreateOrder",
  760. "style": {
  761. "navigationBarTitleText": "确认订单",
  762. "navigationBarTextStyle": "black",
  763. "app-plus": {
  764. "bounce": "none"
  765. }
  766. }
  767. },
  768. {
  769. "path": "live/paymentOrder",
  770. "style": {
  771. "navigationBarTitleText": "支付订单",
  772. "navigationBarTextStyle": "black",
  773. "app-plus": {
  774. "bounce": "none"
  775. }
  776. }
  777. },
  778. {
  779. "path": "live/refundOrder",
  780. "style": {
  781. "navigationBarTitleText": "申请售后",
  782. "enablePullDownRefresh": false
  783. }
  784. },
  785. {
  786. "path": "live/refundOrderProduct",
  787. "style": {
  788. "navigationBarTitleText": "订单售后",
  789. "enablePullDownRefresh": false
  790. }
  791. },{
  792. "path": "live/storeOrderDelivery",
  793. "style": {
  794. "navigationBarTitleText": "物流信息",
  795. "navigationStyle": "custom",
  796. "enablePullDownRefresh": false
  797. }
  798. },
  799. {
  800. "path": "live/storeOrderRefundList",
  801. "style": {
  802. "navigationBarTitleText": "我的售后",
  803. "enablePullDownRefresh": false,
  804. "navigationBarBackgroundColor": "#ffffff",
  805. "navigationBarTextStyle": "black"
  806. }
  807. },
  808. {
  809. "path": "live/storeOrderRefundSubmit",
  810. "style": {
  811. "navigationBarTitleText": "提交售后",
  812. "navigationBarTextStyle": "black",
  813. "navigationBarBackgroundColor": "#ffffff"
  814. }
  815. },
  816. {
  817. "path": "live/success",
  818. "style": {
  819. "navigationBarTitleText": "支付成功",
  820. "navigationBarTextStyle": "black",
  821. "app-plus": {
  822. "bounce": "none"
  823. }
  824. }
  825. },
  826. {
  827. "path": "live/refundOrderDetail",
  828. "style": {
  829. "navigationBarTitleText": "",
  830. "navigationStyle": "custom",
  831. "scrollIndicator": "none",
  832. "navigationBarTextStyle": "black",
  833. "app-plus": {
  834. "bounce": "none"
  835. }
  836. }
  837. },
  838. {
  839. "path": "live/refundOrderDelivery",
  840. "style": {
  841. "navigationBarTitleText": "物流信息",
  842. "navigationBarTextStyle": "black",
  843. "app-plus": {
  844. "bounce": "none"
  845. }
  846. }
  847. }
  848. ]
  849. },
  850. {
  851. "root": "pages_course",
  852. "pages": [{
  853. "path": "video",
  854. "style": {
  855. "navigationBarTitleText": "课程",
  856. "navigationStyle": "custom",
  857. "scrollIndicator": "none",
  858. "usingComponenets": {
  859. "uni-popup": "/uni_modules/uni-popup/components/uni-popup/uni-popup"
  860. },
  861. "componentPlaceholder": {
  862. "uni-popup": "view"
  863. },
  864. "app-plus": {
  865. "bounce": "none",
  866. "softinputMode": "adjustResize"
  867. }
  868. }
  869. }, {
  870. "path": "feedback",
  871. "style": {
  872. "navigationBarTitleText": "投诉反馈",
  873. "navigationStyle": "custom",
  874. "scrollIndicator": "none",
  875. "app-plus": {
  876. "bounce": "none",
  877. "softinputMode": "adjustResize"
  878. }
  879. }
  880. },
  881. {
  882. "path": "becomeVIP",
  883. "style": {
  884. "navigationBarTitleText": "注册会员",
  885. "enablePullDownRefresh": false,
  886. "navigationStyle": "custom"
  887. }
  888. },
  889. {
  890. "path": "webview",
  891. "style": {
  892. "navigationBarTitleText": "授权登录",
  893. "scrollIndicator": "none",
  894. "app-plus": {
  895. "bounce": "none",
  896. "softinputMode": "adjustResize"
  897. }
  898. }
  899. },
  900. {
  901. "path": "videovip",
  902. "style": {
  903. "navigationBarTitleText": "手动看课",
  904. "enablePullDownRefresh": false,
  905. "navigationStyle": "custom",
  906. "scrollIndicator": "none",
  907. "app-plus": {
  908. "bounce": "none",
  909. "softinputMode": "adjustResize"
  910. }
  911. }
  912. },
  913. {
  914. "path": "courseCover",
  915. "style": {
  916. "navigationBarTitleText": "看课封面",
  917. "enablePullDownRefresh": false,
  918. "navigationStyle": "custom",
  919. "scrollIndicator": "none",
  920. "app-plus": {
  921. "bounce": "none",
  922. "softinputMode": "adjustResize"
  923. }
  924. }
  925. }, {
  926. "path": "livingList",
  927. "style": {
  928. "navigationBarTitleText": "直播列表",
  929. "navigationBarTextStyle": "black",
  930. "app-plus": {
  931. "bounce": "none"
  932. }
  933. }
  934. }, {
  935. "path": "living",
  936. "style": {
  937. "navigationBarTitleText": "",
  938. "navigationBarTextStyle": "black",
  939. "enablePullDownRefresh": true,
  940. "navigationStyle": "custom",
  941. "softinputMode": "adjustResize", // 必须配置这个才能正常获取高度
  942. "app-plus": {
  943. "bounce": "none",
  944. "videoFullscreen": true,
  945. "videoAutoFullscreen": false,
  946. "videoObjectFit": "contain"
  947. },
  948. "h5": {
  949. "videoFullscreen": true
  950. }
  951. }
  952. }
  953. ]
  954. }
  955. ],
  956. "globalStyle": {
  957. "navigationBarTextStyle": "black",
  958. "navigationBarTitleText": "芳华惠选",
  959. "navigationBarBackgroundColor": "#FFFFFF",
  960. "backgroundColor": "#FFFFFF"
  961. },
  962. "tabBar": {
  963. "color": "#666666",
  964. "selectedColor": "#2BC7B9",
  965. "borderStyle": "white",
  966. "backgroundColor": "#ffffff",
  967. "height": "64px",
  968. "fontSize": "12px",
  969. "iconWidth": "18px",
  970. "spacing": "4px",
  971. "list": [{
  972. "pagePath": "pages/home/index",
  973. "iconPath": "/static/images/home.png",
  974. "selectedIconPath": "/static/images/home_sel.png",
  975. "text": "首页"
  976. },
  977. // {
  978. // "pagePath": "pages/home/companyInfo",
  979. // "iconPath": "/static/images/health.png",
  980. // "selectedIconPath": "/static/images/health_sel.png",
  981. // "text": "企业理念"
  982. // },
  983. {
  984. "pagePath": "pages/shopping/cart",
  985. "iconPath": "/static/images/cart.png",
  986. "selectedIconPath": "/static/images/cart_sel.png",
  987. "text": "购物车"
  988. },
  989. // {
  990. // "pagePath": "pages/doctor/index",
  991. // "iconPath": "/static/images/see_doctor.png",
  992. // "selectedIconPath": "/static/images/see_doctor_sel.png",
  993. // "text": "问诊"
  994. // },
  995. {
  996. "pagePath": "pages/shopping/index",
  997. "iconPath": "/static/images/shop_mall.png",
  998. "selectedIconPath": "/static/images/shop_mall_sel.png",
  999. "text": "健康商城"
  1000. },
  1001. {
  1002. "pagePath": "pages/user/index",
  1003. "iconPath": "/static/images/my.png",
  1004. "selectedIconPath": "/static/images/my_sel.png",
  1005. "text": "会员中心"
  1006. }
  1007. ]
  1008. }
  1009. }