pages.json 29 KB

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