pages.json 27 KB

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