pages.json 30 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/common/launch"
  8. },
  9. {
  10. "path": "pages/auth/login",
  11. "style": {
  12. "navigationBarTitleText": "授权登录",
  13. "navigationStyle": "custom"
  14. }
  15. },
  16. {
  17. "path": "pages/auth/wxLogin",
  18. "style": {
  19. "navigationBarTitleText": "公众号授权",
  20. "navigationStyle": "custom"
  21. }
  22. },
  23. {
  24. "path": "pages/home/index",
  25. "style": {
  26. "navigationBarTitleText": "盛世生活工具A",
  27. "enablePullDownRefresh": false,
  28. "navigationStyle": "custom",
  29. "app-plus": {
  30. "titleNView": false
  31. }
  32. }
  33. },
  34. {
  35. "path": "pages/live/index",
  36. "style": {
  37. "navigationBarTitleText": "",
  38. "enablePullDownRefresh": false,
  39. "navigationStyle": "custom",
  40. "app-plus": {
  41. "titleNView": false
  42. }
  43. }
  44. },
  45. {
  46. "path": "pages/message/index",
  47. "style": {
  48. "navigationBarTitleText": "",
  49. "enablePullDownRefresh": false,
  50. "navigationStyle": "custom",
  51. "app-plus": {
  52. "titleNView": false
  53. }
  54. }
  55. },
  56. // {
  57. // "path" : "pages/home/doctorCase",
  58. // "style" :
  59. // {
  60. // "navigationBarTitleText": "问诊案例",
  61. // "app-plus": {
  62. // "titleNView": false
  63. // }
  64. // }
  65. // },
  66. // {
  67. // "path" : "pages/doctor/doctorQr",
  68. // "style" :
  69. // {
  70. // "navigationBarTitleText": "用药咨询",
  71. // "app-plus": {
  72. // "titleNView": false
  73. // }
  74. // }
  75. // },
  76. {
  77. "path": "pages/home/productSearch",
  78. "style": {
  79. "navigationBarTitleText": "产品搜索",
  80. "app-plus": {
  81. "titleNView": false
  82. }
  83. }
  84. },
  85. {
  86. "path": "pages/healthy/idea",
  87. "style": {
  88. "navigationBarTitleText": "健康档案",
  89. "enablePullDownRefresh": false,
  90. "navigationStyle": "custom",
  91. "app-plus": {
  92. "titleNView": false
  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/shopping/productDetails",
  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/shopping/productList",
  202. // "style" :
  203. // {
  204. // "navigationBarTitleText": "药品列表",
  205. // "enablePullDownRefresh": false
  206. // }
  207. // }
  208. , {
  209. "path": "pages/shopping/confirmOrder",
  210. "style": {
  211. "navigationBarTitleText": "确认订单",
  212. "enablePullDownRefresh": false
  213. }
  214. }, {
  215. "path": "pages/shopping/paymentOrder",
  216. "style": {
  217. "navigationBarTitleText": "去支付",
  218. "enablePullDownRefresh": false
  219. }
  220. }, {
  221. "path": "pages/shopping/payOrder",
  222. "style": {
  223. "navigationBarTitleText": "推荐服务支付",
  224. "enablePullDownRefresh": false
  225. }
  226. },
  227. // {
  228. // "path" : "pages/shopping/prescribe",
  229. // "style" :
  230. // {
  231. // "navigationBarTitleText": "填写处方信息",
  232. // "navigationStyle": "custom",
  233. // "enablePullDownRefresh": false
  234. // }
  235. // },
  236. // {
  237. // "path" : "pages/doctor/doctorIm",
  238. // "style" :
  239. // {
  240. // "navigationBarTitleText": "问诊会话",
  241. // "enablePullDownRefresh": false
  242. // }
  243. // },
  244. {
  245. "path": "pages/shopping/success",
  246. "style": {
  247. "navigationBarTitleText": "支付成功",
  248. "enablePullDownRefresh": false
  249. }
  250. },
  251. // {
  252. // "path" : "pages/doctor/paymentOrder",
  253. // "style" :
  254. // {
  255. // "navigationBarTitleText": "去支付",
  256. // "enablePullDownRefresh": false
  257. // }
  258. // }
  259. // ,{
  260. // "path" : "pages/doctor/doctorOrderIM",
  261. // "style" :
  262. // {
  263. // "navigationBarTitleText": "问诊会话",
  264. // "enablePullDownRefresh": false
  265. // }
  266. // }
  267. {
  268. "path": "pages/home/content",
  269. "style": {
  270. "navigationBarTitleText": "详情",
  271. "enablePullDownRefresh": false
  272. }
  273. }, {
  274. "path": "pages/home/h5",
  275. "style": {
  276. "navigationBarTitleText": "详情",
  277. "enablePullDownRefresh": false
  278. }
  279. }, {
  280. "path": "pages/home/cert",
  281. "style": {
  282. "navigationBarTitleText": "资质证明",
  283. "enablePullDownRefresh": false
  284. }
  285. },
  286. {
  287. "path": "pages/learn/index",
  288. "style": {
  289. "navigationBarTitleText": ""
  290. }
  291. }
  292. // ,{
  293. // "path" : "pages/shopping/confirmPackageOrder",
  294. // "style" :
  295. // {
  296. // "navigationBarTitleText": "确认支付",
  297. // "enablePullDownRefresh": false
  298. // }
  299. // }
  300. ],
  301. "subPackages": [
  302. // {
  303. // "root": "pages_doctor",
  304. // "pages": [
  305. // {
  306. // "path" : "doctorDetail",
  307. // "style" :
  308. // {
  309. // "navigationBarTitleText": "医生详情",
  310. // "navigationStyle": "custom",
  311. // "enablePullDownRefresh": false
  312. // }
  313. // },{
  314. // "path" : "doctorIm",
  315. // "style" :
  316. // {
  317. // "navigationBarTitleText": "问诊会话",
  318. // "enablePullDownRefresh": false
  319. // }
  320. // },{
  321. // "path" : "doctorList",
  322. // "style" :
  323. // {
  324. // "navigationBarTitleText": "医生列表",
  325. // "enablePullDownRefresh": false
  326. // }
  327. // },{
  328. // "path" : "doctorOrderIM",
  329. // "style" :
  330. // {
  331. // "navigationBarTitleText": "问诊会话",
  332. // "enablePullDownRefresh": false
  333. // }
  334. // },{
  335. // "path" : "doctorQr",
  336. // "style" :
  337. // {
  338. // "navigationBarTitleText": "用药咨询",
  339. // "app-plus": {
  340. // "titleNView": false
  341. // }
  342. // }
  343. // },{
  344. // "path" : "index",
  345. // "style" :
  346. // {
  347. // "navigationBarTitleText": "问诊",
  348. // "navigationStyle": "custom",
  349. // "enablePullDownRefresh": false
  350. // }
  351. // },{
  352. // "path" : "paymentOrder",
  353. // "style" :
  354. // {
  355. // "navigationBarTitleText": "去支付",
  356. // "enablePullDownRefresh": false
  357. // }
  358. // },{
  359. // "path" : "submitOrder",
  360. // "style" :
  361. // {
  362. // "navigationBarTitleText": "发布问诊",
  363. // "enablePullDownRefresh": false
  364. // }
  365. // }
  366. // ]
  367. // },
  368. {
  369. "root": "pages_index",
  370. "pages": [{
  371. "path": "index/medicatedFoodList",
  372. "style": {
  373. "navigationBarTitleText": "药膳食疗",
  374. "app-plus": {
  375. "titleNView": false
  376. }
  377. }
  378. },
  379. {
  380. "path": "index/medicatedFoodDetails",
  381. "style": {
  382. "navigationBarTitleText": "药膳食疗",
  383. "app-plus": {
  384. "titleNView": false
  385. }
  386. }
  387. },
  388. {
  389. "path": "index/vesselList",
  390. "style": {
  391. "navigationBarTitleText": "经络穴位",
  392. "app-plus": {
  393. "titleNView": false
  394. }
  395. }
  396. },
  397. {
  398. "path": "index/vesselDetails",
  399. "style": {
  400. "navigationBarTitleText": "经络穴位",
  401. "app-plus": {
  402. "titleNView": false
  403. }
  404. }
  405. },
  406. {
  407. "path": "index/questionsList",
  408. "style": {
  409. "navigationBarTitleText": "问答专区",
  410. "app-plus": {
  411. "titleNView": false
  412. }
  413. }
  414. },
  415. {
  416. "path": "index/questionsDetails",
  417. "style": {
  418. "navigationBarTitleText": "问答专区",
  419. "app-plus": {
  420. "titleNView": false
  421. }
  422. }
  423. },
  424. {
  425. "path": "index/diseaseList",
  426. "style": {
  427. "navigationBarTitleText": "疾病列表",
  428. "app-plus": {
  429. "titleNView": false
  430. }
  431. }
  432. },
  433. {
  434. "path": "index/diseaseDetails",
  435. "style": {
  436. "navigationBarTitleText": "疾病",
  437. "app-plus": {
  438. "titleNView": false
  439. }
  440. }
  441. },
  442. {
  443. "path": "index/chineseMedicineList",
  444. "style": {
  445. "navigationBarTitleText": "中药图解",
  446. "app-plus": {
  447. "titleNView": false
  448. }
  449. }
  450. },
  451. {
  452. "path": "index/chineseMedicineDetails",
  453. "style": {
  454. "navigationBarTitleText": "中药图解",
  455. "app-plus": {
  456. "titleNView": false
  457. }
  458. }
  459. },
  460. {
  461. "path": "index/famousPrescribeList",
  462. "style": {
  463. "navigationBarTitleText": "名方今用",
  464. "app-plus": {
  465. "titleNView": false
  466. }
  467. }
  468. },
  469. {
  470. "path": "index/famousPrescribeDetails",
  471. "style": {
  472. "navigationBarTitleText": "名方今用",
  473. "app-plus": {
  474. "titleNView": false
  475. }
  476. }
  477. },
  478. {
  479. "path": "index/test",
  480. "style": {
  481. "navigationBarTitleText": "测一测",
  482. "app-plus": {
  483. "titleNView": false
  484. }
  485. }
  486. },
  487. {
  488. "path": "index/testList",
  489. "style": {
  490. "navigationBarTitleText": "测一测",
  491. "app-plus": {
  492. "titleNView": false
  493. }
  494. }
  495. },
  496. {
  497. "path": "index/testDetails",
  498. "style": {
  499. "navigationBarTitleText": "测一测",
  500. "app-plus": {
  501. "titleNView": false
  502. }
  503. }
  504. },
  505. {
  506. "path": "index/testResult",
  507. "style": {
  508. "navigationBarTitleText": "测试结果",
  509. "app-plus": {
  510. "titleNView": false
  511. }
  512. }
  513. },
  514. {
  515. "path": "index/articleList",
  516. "style": {
  517. "navigationBarTitleText": "健康知识",
  518. "app-plus": {
  519. "titleNView": false
  520. }
  521. }
  522. },
  523. {
  524. "path": "index/articleDetails",
  525. "style": {
  526. "navigationBarTitleText": "文章详情",
  527. "app-plus": {
  528. "titleNView": false
  529. }
  530. }
  531. },
  532. {
  533. "path": "index/doctorArticleList",
  534. "style": {
  535. "navigationBarTitleText": "康复医案",
  536. "app-plus": {
  537. "titleNView": false
  538. }
  539. }
  540. },
  541. {
  542. "path": "index/doctorArticleDetails",
  543. "style": {
  544. "navigationBarTitleText": "康复医案",
  545. "app-plus": {
  546. "titleNView": false
  547. }
  548. }
  549. }
  550. ]
  551. },
  552. {
  553. "root": "pages_user",
  554. "pages": [{
  555. "path": "user/addPatient",
  556. "style": {
  557. "navigationBarTitleText": "创建健康档案",
  558. "app-plus": {
  559. "titleNView": false
  560. }
  561. }
  562. }, {
  563. "path": "user/message",
  564. "style": {
  565. "navigationBarTitleText": "消息",
  566. "enablePullDownRefresh": false
  567. }
  568. }, {
  569. "path": "user/msgDetail",
  570. "style": {
  571. "navigationBarTitleText": "系统消息",
  572. "enablePullDownRefresh": false
  573. }
  574. }, {
  575. "path": "user/storeOrder",
  576. "style": {
  577. // "navigationBarTitleText": "我的服务",
  578. "navigationBarTitleText": "我的订单",
  579. "enablePullDownRefresh": false
  580. }
  581. }, {
  582. "path": "user/storeOrderDetail",
  583. "style": {
  584. "navigationBarTitleText": "服务详情",
  585. "navigationStyle": "custom",
  586. "enablePullDownRefresh": false
  587. }
  588. }, {
  589. "path": "user/doctorOrder",
  590. "style": {
  591. "navigationBarTitleText": "问诊列表",
  592. "enablePullDownRefresh": false
  593. }
  594. }, {
  595. "path": "user/patient",
  596. "style": {
  597. "navigationBarTitleText": "健康档案",
  598. "enablePullDownRefresh": false
  599. }
  600. }, {
  601. "path": "user/addAddress",
  602. "style": {
  603. "navigationBarTitleText": "新建收货地址",
  604. "enablePullDownRefresh": false
  605. }
  606. }, {
  607. "path": "user/address",
  608. "style": {
  609. "navigationBarTitleText": "收货地址",
  610. "enablePullDownRefresh": false
  611. }
  612. }, {
  613. "path": "user/integral",
  614. "style": {
  615. "navigationBarTitleText": "我的积分",
  616. "navigationStyle": "custom",
  617. "enablePullDownRefresh": false
  618. }
  619. }, {
  620. "path": "user/refundOrderList",
  621. "style": {
  622. "navigationBarTitleText": "售后服务",
  623. "enablePullDownRefresh": false
  624. }
  625. }, {
  626. "path": "user/refundOrderDetail",
  627. "style": {
  628. "navigationBarTitleText": "处理进度",
  629. "navigationStyle": "custom",
  630. "enablePullDownRefresh": false
  631. }
  632. }, {
  633. "path": "user/refundOrderLogs",
  634. "style": {
  635. "navigationBarTitleText": "退款详情",
  636. "navigationStyle": "custom",
  637. "enablePullDownRefresh": false
  638. }
  639. }, {
  640. "path": "user/storeOrderDelivery",
  641. "style": {
  642. "navigationBarTitleText": "物流信息",
  643. "navigationStyle": "custom",
  644. "enablePullDownRefresh": false
  645. }
  646. }, {
  647. "path": "user/refundOrder",
  648. "style": {
  649. "navigationBarTitleText": "申请售后",
  650. "enablePullDownRefresh": false
  651. }
  652. }, {
  653. "path": "user/prescribeOrder",
  654. "style": {
  655. "navigationBarTitleText": "处方单",
  656. "enablePullDownRefresh": false
  657. }
  658. }, {
  659. "path": "user/pay",
  660. "style": {
  661. "navigationBarTitleText": "收款",
  662. "enablePullDownRefresh": false
  663. }
  664. }, {
  665. "path": "user/success",
  666. "style": {
  667. "navigationBarTitleText": "支付结果",
  668. "enablePullDownRefresh": false
  669. }
  670. }, {
  671. "path": "user/refundOrderProduct",
  672. "style": {
  673. "navigationBarTitleText": "订单售后",
  674. "enablePullDownRefresh": false
  675. }
  676. }, {
  677. "path": "user/refundOrderDelivery",
  678. "style": {
  679. "navigationBarTitleText": "物流信息",
  680. "enablePullDownRefresh": false
  681. }
  682. }, {
  683. "path": "user/userTui",
  684. "style": {
  685. "navigationBarTitleText": "我的推广",
  686. "enablePullDownRefresh": false
  687. }
  688. }, {
  689. "path": "user/userTuiProduct",
  690. "style": {
  691. "navigationBarTitleText": "推广产品",
  692. "enablePullDownRefresh": false
  693. }
  694. }, {
  695. "path": "user/userTuiImg",
  696. "style": {
  697. "navigationBarTitleText": "推广海报",
  698. "enablePullDownRefresh": false
  699. }
  700. }, {
  701. "path": "user/userTuiList",
  702. "style": {
  703. "navigationBarTitleText": "我的推荐人",
  704. "enablePullDownRefresh": false
  705. }
  706. }, {
  707. "path": "user/userTuiMoneyList",
  708. "style": {
  709. "navigationBarTitleText": "佣金记录",
  710. "enablePullDownRefresh": false
  711. }
  712. }, {
  713. "path": "user/userTuiOrderList",
  714. "style": {
  715. "navigationBarTitleText": "服务记录",
  716. "enablePullDownRefresh": false
  717. }
  718. }, {
  719. "path": "user/storeProductRelation",
  720. "style": {
  721. "navigationBarTitleText": "我的足迹",
  722. "enablePullDownRefresh": false
  723. }
  724. }, {
  725. "path": "user/personInfo",
  726. "style": {
  727. "navigationBarTitleText": "个人信息",
  728. "enablePullDownRefresh": false
  729. }
  730. }, {
  731. "path": "user/userTuiMoney",
  732. "style": {
  733. "navigationBarTitleText": "提现管理",
  734. "enablePullDownRefresh": false
  735. }
  736. }, {
  737. "path": "user/userTuiExtractLog",
  738. "style": {
  739. "navigationBarTitleText": "提现记录",
  740. "enablePullDownRefresh": false
  741. }
  742. }, {
  743. "path": "user/doc",
  744. "style": {
  745. "navigationBarTitleText": "健康档案",
  746. "enablePullDownRefresh": false
  747. }
  748. }, {
  749. "path": "user/addDoc",
  750. "style": {
  751. "navigationBarTitleText": "创建健康档案",
  752. "enablePullDownRefresh": false
  753. }
  754. }, {
  755. "path": "user/docDetail",
  756. "style": {
  757. "navigationBarTitleText": "健康档案",
  758. "navigationBarBackgroundColor": "#dff9f5",
  759. "enablePullDownRefresh": false
  760. }
  761. }, {
  762. "path": "user/docRecord",
  763. "style": {
  764. "navigationBarTitleText": "健康记录",
  765. "enablePullDownRefresh": false
  766. }
  767. }, {
  768. "path": "user/addDocRecord",
  769. "style": {
  770. "navigationBarTitleText": "添加健康记录",
  771. "enablePullDownRefresh": false
  772. }
  773. }, {
  774. "path": "user/userTuiAdd",
  775. "style": {
  776. "navigationBarTitleText": "申请推广员",
  777. "enablePullDownRefresh": false
  778. }
  779. }, {
  780. "path": "user/paymentOrderRemain",
  781. "style": {
  782. "navigationBarTitleText": "支付尾款",
  783. "enablePullDownRefresh": false
  784. }
  785. }, {
  786. "path": "user/otherPaymentOrder",
  787. "style": {
  788. "navigationBarTitleText": "亲友代付",
  789. "enablePullDownRefresh": false
  790. }
  791. }, {
  792. "path": "user/otherPaySuccess",
  793. "style": {
  794. "navigationBarTitleText": "支付成功",
  795. "enablePullDownRefresh": false
  796. }
  797. }, {
  798. "path": "user/otherPaymentOrderRemain",
  799. "style": {
  800. "navigationBarTitleText": "亲友代付尾款",
  801. "enablePullDownRefresh": false
  802. }
  803. }
  804. ]
  805. },
  806. {
  807. "root": "pages_company",
  808. "pages": [{
  809. "path": "auth/login",
  810. "style": {
  811. "navigationBarTitleText": "销售员登录",
  812. "app-plus": {
  813. "titleNView": false
  814. }
  815. }
  816. },
  817. {
  818. "path": "index",
  819. "style": {
  820. "navigationBarTitleText": "销售管理首页",
  821. "app-plus": {
  822. "titleNView": false
  823. }
  824. }
  825. },
  826. {
  827. "path": "storeOrder",
  828. "style": {
  829. "navigationBarTitleText": "服务管理",
  830. "app-plus": {
  831. "titleNView": false
  832. }
  833. }
  834. }, {
  835. "path": "storeOrderDetail",
  836. "style": {
  837. "navigationBarTitleText": "服务详情",
  838. "navigationStyle": "custom",
  839. "enablePullDownRefresh": false
  840. }
  841. },
  842. {
  843. "path": "storeProductPackage",
  844. "style": {
  845. "navigationBarTitleText": "产品套餐",
  846. "app-plus": {
  847. "titleNView": false
  848. }
  849. }
  850. },
  851. {
  852. "path": "storeProductPackageDetails",
  853. "style": {
  854. "navigationBarTitleText": "套餐详情",
  855. "app-plus": {
  856. "titleNView": false
  857. }
  858. }
  859. },
  860. {
  861. "path": "coupon",
  862. "style": {
  863. "navigationBarTitleText": "优惠券",
  864. "app-plus": {
  865. "titleNView": false
  866. }
  867. }
  868. },
  869. {
  870. "path": "couponDetails",
  871. "style": {
  872. "navigationBarTitleText": "优惠券详情",
  873. "app-plus": {
  874. "titleNView": false
  875. }
  876. }
  877. },
  878. {
  879. "path": "order/productList",
  880. "style": {
  881. "navigationBarTitleText": "产品列表",
  882. "app-plus": {
  883. "titleNView": false
  884. }
  885. }
  886. },
  887. {
  888. "path": "order/productDetails",
  889. "style": {
  890. "navigationBarTitleText": "产品详情",
  891. "enablePullDownRefresh": false
  892. }
  893. },
  894. {
  895. "path": "order/cart",
  896. "style": {
  897. "navigationBarTitleText": "购物车",
  898. "app-plus": {
  899. "titleNView": false
  900. }
  901. }
  902. },
  903. {
  904. "path": "order/confirmOrder",
  905. "style": {
  906. "navigationBarTitleText": "推荐服务信息",
  907. "app-plus": {
  908. "titleNView": false
  909. }
  910. }
  911. },
  912. {
  913. "path": "order/confirmCompanyOrder",
  914. "style": {
  915. "navigationBarTitleText": "推荐服务",
  916. "app-plus": {
  917. "titleNView": false
  918. }
  919. }
  920. },
  921. {
  922. "path": "order/coupon",
  923. "style": {
  924. "navigationBarTitleText": "制单优惠券",
  925. "app-plus": {
  926. "titleNView": false
  927. }
  928. }
  929. },
  930. {
  931. "path": "order/productShowDetails",
  932. "style": {
  933. "navigationBarTitleText": "产品详情",
  934. "app-plus": {
  935. "titleNView": false
  936. }
  937. }
  938. },
  939. {
  940. "path": "alipayImg",
  941. "style": {
  942. "navigationBarTitleText": "支付宝收款",
  943. "app-plus": {
  944. "titleNView": false
  945. }
  946. }
  947. },
  948. {
  949. "path": "wechatcode",
  950. "style": {
  951. "navigationBarTitleText": "微信收款码",
  952. "app-plus": {
  953. "titleNView": false
  954. }
  955. }
  956. },
  957. {
  958. "path": "card",
  959. "style": {
  960. "navigationBarTitleText": "我的名片",
  961. "app-plus": {
  962. "titleNView": false
  963. }
  964. }
  965. }
  966. ]
  967. },
  968. {
  969. "root": "pages_shopping",
  970. "pages": [{
  971. "path": "shopping/confirmPackageOrder",
  972. "style": {
  973. "navigationBarTitleText": "确认支付",
  974. "enablePullDownRefresh": false
  975. }
  976. },
  977. {
  978. "path": "shopping/confirmCreateOrder",
  979. "style": {
  980. "navigationBarTitleText": "确认订单",
  981. "enablePullDownRefresh": false
  982. }
  983. },
  984. {
  985. "path": "shopping/productList",
  986. "style": {
  987. "navigationBarTitleText": "药品列表",
  988. "enablePullDownRefresh": false
  989. }
  990. },
  991. {
  992. "path": "shopping/coupon",
  993. "style": {
  994. "navigationBarTitleText": "优惠券",
  995. "enablePullDownRefresh": false
  996. }
  997. }, {
  998. "path": "shopping/myCoupon",
  999. "style": {
  1000. "navigationBarTitleText": "我的优惠券",
  1001. "enablePullDownRefresh": false
  1002. }
  1003. }, {
  1004. "path": "shopping/activityDetails",
  1005. "style": {
  1006. "navigationBarTitleText": "活动",
  1007. "enablePullDownRefresh": false
  1008. }
  1009. }
  1010. ]
  1011. },
  1012. {
  1013. "root": "pages_manage",
  1014. "pages": [
  1015. {
  1016. "path": "login",
  1017. "style": {
  1018. "navigationBarTitleText": "登录",
  1019. "enablePullDownRefresh": false
  1020. }
  1021. },
  1022. {
  1023. "path": "index",
  1024. "style": {
  1025. "navigationBarTitleText": "数据",
  1026. "enablePullDownRefresh": false
  1027. }
  1028. },
  1029. {
  1030. "path": "dataDetails",
  1031. "style": {
  1032. "navigationBarTitleText": "课程数据详情",
  1033. "enablePullDownRefresh": false
  1034. }
  1035. },
  1036. {
  1037. "path": "statistic",
  1038. "style": {
  1039. "navigationBarTitleText": "课程统计",
  1040. "enablePullDownRefresh": false
  1041. }
  1042. },
  1043. {
  1044. "path": "manageDataDetail",
  1045. "style": {
  1046. "navigationBarTitleText": "销售详情",
  1047. "enablePullDownRefresh": false
  1048. }
  1049. }
  1050. ]
  1051. },
  1052. {
  1053. "root": "pages_managedata",
  1054. "pages": [{
  1055. "path": "coursedetail",
  1056. "style": {
  1057. "navigationBarTitleText": "课程详情",
  1058. "enablePullDownRefresh": false
  1059. }
  1060. },
  1061. {
  1062. "path": "vipdetail",
  1063. "style": {
  1064. "navigationBarTitleText": "会员详情",
  1065. "enablePullDownRefresh": false
  1066. }
  1067. },
  1068. {
  1069. "path": "userInfo",
  1070. "style": {
  1071. "navigationBarTitleText": "用户信息",
  1072. "enablePullDownRefresh": false
  1073. }
  1074. },
  1075. {
  1076. "path": "editUser",
  1077. "style": {
  1078. "navigationBarTitleText": "设置",
  1079. "enablePullDownRefresh": false
  1080. }
  1081. },
  1082. {
  1083. "path": "lableSetup",
  1084. "style": {
  1085. "navigationBarTitleText": "标签设置",
  1086. "enablePullDownRefresh": false
  1087. }
  1088. },
  1089. {
  1090. "path": "about",
  1091. "style": {
  1092. "navigationBarTitleText": "关于我们",
  1093. "enablePullDownRefresh": false
  1094. }
  1095. },
  1096. {
  1097. "path": "users",
  1098. "style": {
  1099. "navigationBarTitleText": "审核销售",
  1100. "enablePullDownRefresh": false
  1101. }
  1102. },
  1103. {
  1104. "path": "managedetail",
  1105. "style": {
  1106. "navigationBarTitleText": "审核销售",
  1107. "enablePullDownRefresh": false
  1108. }
  1109. },
  1110. {
  1111. "path": "exprotList",
  1112. "style": {
  1113. "navigationBarTitleText": "审核列表",
  1114. "enablePullDownRefresh": false
  1115. }
  1116. },
  1117. {
  1118. "path": "saleInfo",
  1119. "style": {
  1120. "navigationBarTitleText": "员工详情",
  1121. "enablePullDownRefresh": false
  1122. }
  1123. },
  1124. {
  1125. "path": "changeVip",
  1126. "style": {
  1127. "navigationBarTitleText": "更换会员归属",
  1128. "enablePullDownRefresh": false
  1129. }
  1130. }
  1131. ]
  1132. },
  1133. {
  1134. "root": "pages_course",
  1135. "pages": [{
  1136. "path": "reward",
  1137. "style": {
  1138. "navigationBarTitleText": "领取奖励",
  1139. "enablePullDownRefresh": false
  1140. }
  1141. },{
  1142. //课程详情
  1143. "path": "courseDetails",
  1144. "style": {
  1145. "navigationBarTitleText": "",
  1146. "enablePullDownRefresh": false,
  1147. "navigationStyle": "custom",
  1148. "app-plus": {
  1149. "titleNView": false
  1150. }
  1151. }
  1152. },
  1153. {
  1154. "path": "becomeVIP",
  1155. "style": {
  1156. "navigationBarTitleText": "注册会员",
  1157. "enablePullDownRefresh": false
  1158. }
  1159. },
  1160. {
  1161. "path": "becomeSale",
  1162. "style": {
  1163. "navigationBarTitleText": "注册销售",
  1164. "enablePullDownRefresh": false
  1165. }
  1166. },
  1167. {
  1168. "path": "webview",
  1169. "style": {
  1170. "navigationBarTitleText": "授权登录",
  1171. "enablePullDownRefresh": false
  1172. }
  1173. },
  1174. {
  1175. "path": "videovip",
  1176. "style": {
  1177. "navigationBarTitleText": "看课详情",
  1178. "enablePullDownRefresh": false
  1179. }
  1180. },
  1181. {
  1182. "path" : "learn",
  1183. "style" :
  1184. {
  1185. "navigationBarTitleText" : "健康生活方式指导",
  1186. "enablePullDownRefresh": false
  1187. }
  1188. },
  1189. {
  1190. "path": "teacherClassroom",
  1191. "style": {
  1192. "navigationBarTitleText": "名师课堂",
  1193. "enablePullDownRefresh": false
  1194. }
  1195. },
  1196. {
  1197. "path": "video",
  1198. "style": {
  1199. "navigationBarTitleText": "",
  1200. "enablePullDownRefresh": false,
  1201. "navigationStyle": "custom"
  1202. }
  1203. }
  1204. ]
  1205. }
  1206. ],
  1207. "globalStyle": {
  1208. "navigationBarTextStyle": "black",
  1209. "navigationBarTitleText": "盛世生活工具A",
  1210. "navigationBarBackgroundColor": "#FFFFFF",
  1211. "backgroundColor": "#FFFFFF"
  1212. },
  1213. "tabBar": {
  1214. "color": "#666666",
  1215. "selectedColor": "#5B37FD",
  1216. // "custom": true,
  1217. "borderStyle": "white",
  1218. "backgroundColor": "#ffffff",
  1219. "height": "64px",
  1220. "fontSize": "12px",
  1221. "iconWidth": "18px",
  1222. "spacing": "4px",
  1223. "list": [{
  1224. "pagePath": "pages/home/index",
  1225. "iconPath": "/static/orangetabbar/home.png",
  1226. "selectedIconPath": "/static/orangetabbar/home_pre.png",
  1227. "text": "首页"
  1228. },
  1229. // {
  1230. // "pagePath": "pages/healthy/index",
  1231. // "iconPath": "/static/orangetabbar/health.png",
  1232. // "selectedIconPath": "/static/orangetabbar/health_sel.png",
  1233. // "text": "健康百科"
  1234. // },
  1235. // {
  1236. // "pagePath": "pages/shopping/index",
  1237. // "iconPath": "/static/orangetabbar/shop_mall.png",
  1238. // "selectedIconPath": "/static/orangetabbar/shop_mall_sel.png",
  1239. // "text": "健康产品"
  1240. // },
  1241. // {
  1242. // "pagePath": "pages/live/index",
  1243. // "iconPath": "/static/orangetabbar/new.png",
  1244. // "selectedIconPath": "/static/orangetabbar/new_pre.png",
  1245. // "text": "学习"
  1246. // },
  1247. {
  1248. "pagePath": "pages/learn/index",
  1249. "iconPath": "/static/orangetabbar/new.png",
  1250. "selectedIconPath": "/static/orangetabbar/new_pre.png",
  1251. "text": "学习"
  1252. },
  1253. // {
  1254. // "pagePath": "pages/message/index",
  1255. // "iconPath": "/static/orangetabbar/new.png",
  1256. // "selectedIconPath": "/static/orangetabbar/new_pre.png",
  1257. // "text": "消息"
  1258. // },
  1259. // {
  1260. // "pagePath": "pages/healthy/idea",
  1261. // "iconPath": "/static/tabbar/archive.png",
  1262. // "selectedIconPath": "/static/tabbar/archive_sel.png",
  1263. // "text": "健康档案"
  1264. // },
  1265. {
  1266. "pagePath": "pages/user/index",
  1267. "iconPath": "/static/orangetabbar/mine.png",
  1268. "selectedIconPath": "/static/orangetabbar/mine_pre.png",
  1269. "text": "我的"
  1270. }
  1271. ]
  1272. }
  1273. }