pages.json 30 KB

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