pages.json 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606
  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. "path": "pages/auth/numberlogin",
  17. "style": {
  18. "navigationBarTitleText": "电话号码登录",
  19. "navigationStyle": "custom"
  20. }
  21. },
  22. {
  23. "path": "pages/auth/wxLogin",
  24. "style": {
  25. "navigationBarTitleText": "公众号授权",
  26. "navigationStyle": "custom"
  27. }
  28. },
  29. {
  30. "path": "pages/home/index",
  31. "style": {
  32. "navigationBarTitleText": "百域承品",
  33. "enablePullDownRefresh": false,
  34. "navigationStyle": "custom",
  35. "app-plus": {
  36. "titleNView": false
  37. }
  38. }
  39. },
  40. // {
  41. // "path" : "pages/home/doctorCase",
  42. // "style" :
  43. // {
  44. // "navigationBarTitleText": "问诊案例",
  45. // "app-plus": {
  46. // "titleNView": false
  47. // }
  48. // }
  49. // },
  50. // {
  51. // "path" : "pages/doctor/doctorQr",
  52. // "style" :
  53. // {
  54. // "navigationBarTitleText": "用药咨询",
  55. // "app-plus": {
  56. // "titleNView": false
  57. // }
  58. // }
  59. // },
  60. {
  61. "path": "pages/home/productSearch",
  62. "style": {
  63. "navigationBarTitleText": "产品搜索",
  64. "app-plus": {
  65. "titleNView": false
  66. }
  67. }
  68. },
  69. {
  70. "path": "pages/healthy/idea",
  71. "style": {
  72. "navigationBarTitleText": "百域档案",
  73. "enablePullDownRefresh": false,
  74. "navigationStyle": "custom",
  75. "app-plus": {
  76. "titleNView": false
  77. }
  78. }
  79. },
  80. {
  81. "path": "pages/home/productList",
  82. "style": {
  83. "navigationBarTitleText": "产品列表",
  84. "app-plus": {
  85. "titleNView": false
  86. }
  87. }
  88. },
  89. {
  90. "path": "pages/healthy/index",
  91. "style": {
  92. "navigationBarTitleText": "百域知识",
  93. "enablePullDownRefresh": false,
  94. "navigationStyle": "custom",
  95. "app-plus": {
  96. "titleNView": false
  97. }
  98. }
  99. },
  100. {
  101. "path": "pages/healthy/detail",
  102. "style": {
  103. "navigationBarTitleText": "",
  104. "enablePullDownRefresh": false,
  105. "app-plus": {
  106. "titleNView": false
  107. }
  108. }
  109. },
  110. {
  111. "path": "pages/healthy/readUsers",
  112. "style": {
  113. "navigationBarTitleText": "阅读用户",
  114. "enablePullDownRefresh": false,
  115. "app-plus": {
  116. "titleNView": false
  117. }
  118. }
  119. },
  120. // {
  121. // "path" : "pages/doctor/index",
  122. // "style" :
  123. // {
  124. // "navigationBarTitleText": "问诊",
  125. // "navigationStyle": "custom",
  126. // "enablePullDownRefresh": false
  127. // }
  128. // },
  129. // {
  130. // "path" : "pages/doctor/doctorList",
  131. // "style" :
  132. // {
  133. // "navigationBarTitleText": "医生列表",
  134. // "enablePullDownRefresh": false
  135. // }
  136. // },
  137. // {
  138. // "path" : "pages/doctor/doctorDetail",
  139. // "style" :
  140. // {
  141. // "navigationBarTitleText": "医生详情",
  142. // "navigationStyle": "custom",
  143. // "enablePullDownRefresh": false
  144. // }
  145. // },
  146. // {
  147. // "path" : "pages/doctor/submitOrder",
  148. // "style" :
  149. // {
  150. // "navigationBarTitleText": "发布问诊",
  151. // "enablePullDownRefresh": false
  152. // }
  153. // },
  154. {
  155. "path": "pages/shopping/index",
  156. "style": {
  157. "navigationBarTitleText": "商城",
  158. "navigationStyle": "custom",
  159. "enablePullDownRefresh": false
  160. }
  161. },
  162. {
  163. "path": "pages/user/index",
  164. "style": {
  165. "navigationBarTitleText": "我的",
  166. "navigationStyle": "custom",
  167. "app-plus": {
  168. "titleNView": false
  169. }
  170. }
  171. }, {
  172. "path": "pages/shopping/productDetails",
  173. "style": {
  174. "navigationBarTitleText": "产品详情",
  175. "enablePullDownRefresh": false
  176. }
  177. }, {
  178. "path": "pages/shopping/cart",
  179. "style": {
  180. "navigationBarTitleText": "购物车",
  181. "enablePullDownRefresh": false
  182. }
  183. }
  184. // ,{
  185. // "path" : "pages/shopping/productList",
  186. // "style" :
  187. // {
  188. // "navigationBarTitleText": "产品列表",
  189. // "enablePullDownRefresh": false
  190. // }
  191. // }
  192. , {
  193. "path": "pages/shopping/confirmOrder",
  194. "style": {
  195. "navigationBarTitleText": "确认订单",
  196. "enablePullDownRefresh": false
  197. }
  198. }, {
  199. "path": "pages/shopping/paymentOrder",
  200. "style": {
  201. "navigationBarTitleText": "去支付",
  202. "enablePullDownRefresh": false
  203. }
  204. }, {
  205. "path": "pages/shopping/payOrder",
  206. "style": {
  207. "navigationBarTitleText": "推荐服务支付",
  208. "enablePullDownRefresh": false
  209. }
  210. },
  211. // {
  212. // "path" : "pages/shopping/prescribe",
  213. // "style" :
  214. // {
  215. // "navigationBarTitleText": "填写处方信息",
  216. // "navigationStyle": "custom",
  217. // "enablePullDownRefresh": false
  218. // }
  219. // },
  220. // {
  221. // "path" : "pages/doctor/doctorIm",
  222. // "style" :
  223. // {
  224. // "navigationBarTitleText": "问诊会话",
  225. // "enablePullDownRefresh": false
  226. // }
  227. // },
  228. {
  229. "path": "pages/shopping/success",
  230. "style": {
  231. "navigationBarTitleText": "支付成功",
  232. "enablePullDownRefresh": false
  233. }
  234. },
  235. // {
  236. // "path" : "pages/doctor/paymentOrder",
  237. // "style" :
  238. // {
  239. // "navigationBarTitleText": "去支付",
  240. // "enablePullDownRefresh": false
  241. // }
  242. // }
  243. // ,{
  244. // "path" : "pages/doctor/doctorOrderIM",
  245. // "style" :
  246. // {
  247. // "navigationBarTitleText": "问诊会话",
  248. // "enablePullDownRefresh": false
  249. // }
  250. // }
  251. {
  252. "path": "pages/home/content",
  253. "style": {
  254. "navigationBarTitleText": "详情",
  255. "enablePullDownRefresh": false
  256. }
  257. }, {
  258. "path": "pages/home/h5",
  259. "style": {
  260. "navigationBarTitleText": "详情",
  261. "enablePullDownRefresh": false
  262. }
  263. }, {
  264. "path": "pages/home/cert",
  265. "style": {
  266. "navigationBarTitleText": "资质证明",
  267. "enablePullDownRefresh": false
  268. }
  269. }
  270. // ,{
  271. // "path" : "pages/shopping/confirmPackageOrder",
  272. // "style" :
  273. // {
  274. // "navigationBarTitleText": "确认支付",
  275. // "enablePullDownRefresh": false
  276. // }
  277. // }
  278. ],
  279. "subPackages": [
  280. // {
  281. // "root": "pages_doctor",
  282. // "pages": [
  283. // {
  284. // "path" : "doctorDetail",
  285. // "style" :
  286. // {
  287. // "navigationBarTitleText": "医生详情",
  288. // "navigationStyle": "custom",
  289. // "enablePullDownRefresh": false
  290. // }
  291. // },{
  292. // "path" : "doctorIm",
  293. // "style" :
  294. // {
  295. // "navigationBarTitleText": "问诊会话",
  296. // "enablePullDownRefresh": false
  297. // }
  298. // },{
  299. // "path" : "doctorList",
  300. // "style" :
  301. // {
  302. // "navigationBarTitleText": "医生列表",
  303. // "enablePullDownRefresh": false
  304. // }
  305. // },{
  306. // "path" : "doctorOrderIM",
  307. // "style" :
  308. // {
  309. // "navigationBarTitleText": "问诊会话",
  310. // "enablePullDownRefresh": false
  311. // }
  312. // },{
  313. // "path" : "doctorQr",
  314. // "style" :
  315. // {
  316. // "navigationBarTitleText": "用药咨询",
  317. // "app-plus": {
  318. // "titleNView": false
  319. // }
  320. // }
  321. // },{
  322. // "path" : "index",
  323. // "style" :
  324. // {
  325. // "navigationBarTitleText": "问诊",
  326. // "navigationStyle": "custom",
  327. // "enablePullDownRefresh": false
  328. // }
  329. // },{
  330. // "path" : "paymentOrder",
  331. // "style" :
  332. // {
  333. // "navigationBarTitleText": "去支付",
  334. // "enablePullDownRefresh": false
  335. // }
  336. // },{
  337. // "path" : "submitOrder",
  338. // "style" :
  339. // {
  340. // "navigationBarTitleText": "发布问诊",
  341. // "enablePullDownRefresh": false
  342. // }
  343. // }
  344. // ]
  345. // },
  346. {
  347. "root": "pages_index",
  348. "pages": [{
  349. "path": "index/medicatedFoodList",
  350. "style": {
  351. "navigationBarTitleText": "药膳食疗",
  352. "app-plus": {
  353. "titleNView": false
  354. }
  355. }
  356. },
  357. {
  358. "path": "index/medicatedFoodDetails",
  359. "style": {
  360. "navigationBarTitleText": "药膳食疗",
  361. "app-plus": {
  362. "titleNView": false
  363. }
  364. }
  365. },
  366. {
  367. "path": "index/vesselList",
  368. "style": {
  369. "navigationBarTitleText": "经络穴位",
  370. "app-plus": {
  371. "titleNView": false
  372. }
  373. }
  374. },
  375. {
  376. "path": "index/vesselDetails",
  377. "style": {
  378. "navigationBarTitleText": "经络穴位",
  379. "app-plus": {
  380. "titleNView": false
  381. }
  382. }
  383. },
  384. {
  385. "path": "index/questionsList",
  386. "style": {
  387. "navigationBarTitleText": "问答专区",
  388. "app-plus": {
  389. "titleNView": false
  390. }
  391. }
  392. },
  393. {
  394. "path": "index/questionsDetails",
  395. "style": {
  396. "navigationBarTitleText": "问答专区",
  397. "app-plus": {
  398. "titleNView": false
  399. }
  400. }
  401. },
  402. {
  403. "path": "index/diseaseList",
  404. "style": {
  405. "navigationBarTitleText": "疾病列表",
  406. "app-plus": {
  407. "titleNView": false
  408. }
  409. }
  410. },
  411. {
  412. "path": "index/diseaseDetails",
  413. "style": {
  414. "navigationBarTitleText": "疾病",
  415. "app-plus": {
  416. "titleNView": false
  417. }
  418. }
  419. },
  420. {
  421. "path": "index/chineseMedicineList",
  422. "style": {
  423. "navigationBarTitleText": "中药图解",
  424. "app-plus": {
  425. "titleNView": false
  426. }
  427. }
  428. },
  429. {
  430. "path": "index/chineseMedicineDetails",
  431. "style": {
  432. "navigationBarTitleText": "中药图解",
  433. "app-plus": {
  434. "titleNView": false
  435. }
  436. }
  437. },
  438. {
  439. "path": "index/famousPrescribeList",
  440. "style": {
  441. "navigationBarTitleText": "名方今用",
  442. "app-plus": {
  443. "titleNView": false
  444. }
  445. }
  446. },
  447. {
  448. "path": "index/famousPrescribeDetails",
  449. "style": {
  450. "navigationBarTitleText": "名方今用",
  451. "app-plus": {
  452. "titleNView": false
  453. }
  454. }
  455. },
  456. {
  457. "path": "index/test",
  458. "style": {
  459. "navigationBarTitleText": "测一测",
  460. "app-plus": {
  461. "titleNView": false
  462. }
  463. }
  464. },
  465. {
  466. "path": "index/testList",
  467. "style": {
  468. "navigationBarTitleText": "测一测",
  469. "app-plus": {
  470. "titleNView": false
  471. }
  472. }
  473. },
  474. {
  475. "path": "index/testDetails",
  476. "style": {
  477. "navigationBarTitleText": "测一测",
  478. "app-plus": {
  479. "titleNView": false
  480. }
  481. }
  482. },
  483. {
  484. "path": "index/testResult",
  485. "style": {
  486. "navigationBarTitleText": "测试结果",
  487. "app-plus": {
  488. "titleNView": false
  489. }
  490. }
  491. },
  492. {
  493. "path": "index/articleList",
  494. "style": {
  495. "navigationBarTitleText": "百域知识",
  496. "app-plus": {
  497. "titleNView": false
  498. }
  499. }
  500. },
  501. {
  502. "path": "index/articleDetails",
  503. "style": {
  504. "navigationBarTitleText": "文章详情",
  505. "app-plus": {
  506. "titleNView": false
  507. }
  508. }
  509. },
  510. {
  511. "path": "index/doctorArticleList",
  512. "style": {
  513. "navigationBarTitleText": "康复医案",
  514. "app-plus": {
  515. "titleNView": false
  516. }
  517. }
  518. },
  519. {
  520. "path": "index/doctorArticleDetails",
  521. "style": {
  522. "navigationBarTitleText": "康复医案",
  523. "app-plus": {
  524. "titleNView": false
  525. }
  526. }
  527. }
  528. ]
  529. },
  530. {
  531. "root": "pages_user",
  532. "pages": [{
  533. "path": "user/cart",
  534. "style": {
  535. "navigationBarTitleText": "购物车",
  536. "enablePullDownRefresh": false,
  537. "navigationBarBackgroundColor":"#ffffff",
  538. "navigationBarTextStyle":"black"
  539. }
  540. }, {
  541. "path": "user/integralLogsList",
  542. "style": {
  543. "navigationBarTitleText": "获得记录",
  544. "navigationBarTextStyle": "black",
  545. "navigationBarBackgroundColor": "#ffffff"
  546. }
  547. },{
  548. "path": "user/integralOrderList",
  549. "style": {
  550. "navigationBarTitleText": "兑换订单",
  551. "navigationBarTextStyle": "black",
  552. "navigationBarBackgroundColor": "#ffffff"
  553. }
  554. },{
  555. "path": "user/integralOrderDetails",
  556. "style": {
  557. "navigationBarTitleText": "订单详情"
  558. }
  559. }, {
  560. "path": "user/integralOrderPaySuccess",
  561. "style": {
  562. "navigationBarTitleText": "兑换结果",
  563. "navigationBarTextStyle": "black",
  564. "navigationBarBackgroundColor": "#ffffff"
  565. }
  566. }, {
  567. "path": "user/integralPayment",
  568. "style": {
  569. "navigationBarTitleText": "支付订单",
  570. "navigationBarTextStyle": "black",
  571. "navigationBarBackgroundColor": "#ffffff"
  572. }
  573. }, {
  574. "path": "user/integralGoodsDetails",
  575. "style": {
  576. "navigationBarTitleText": "商品详情",
  577. "navigationBarTextStyle": "black",
  578. "navigationBarBackgroundColor": "#ffffff"
  579. }
  580. }, {
  581. "path": "user/confirmIntegralOrder",
  582. "style": {
  583. "navigationBarTitleText": "积分兑换",
  584. "enablePullDownRefresh": false,
  585. "navigationBarBackgroundColor": "#ffffff",
  586. "navigationBarTextStyle": "black"
  587. }
  588. }, {
  589. "path": "user/integralGoodsList",
  590. "style": {
  591. "navigationBarTitleText": "积分商城",
  592. "navigationBarTextStyle": "black",
  593. "navigationBarBackgroundColor": "#ffffff"
  594. }
  595. }, {
  596. "path": "user/integralOrderPay",
  597. "style": {
  598. "navigationBarTitleText": "积分兑换",
  599. "navigationBarTextStyle": "black",
  600. "navigationBarBackgroundColor": "#ffffff"
  601. }
  602. }, {
  603. "path": "user/addPatient",
  604. "style": {
  605. "navigationBarTitleText": "创建百域档案",
  606. "app-plus": {
  607. "titleNView": false
  608. }
  609. }
  610. }, {
  611. "path": "user/message",
  612. "style": {
  613. "navigationBarTitleText": "消息",
  614. "enablePullDownRefresh": false
  615. }
  616. }, {
  617. "path": "user/msgDetail",
  618. "style": {
  619. "navigationBarTitleText": "系统消息",
  620. "enablePullDownRefresh": false
  621. }
  622. }, {
  623. "path": "user/storeOrder",
  624. "style": {
  625. // "navigationBarTitleText": "我的服务",
  626. "navigationBarTitleText": "我的订单",
  627. "enablePullDownRefresh": false
  628. }
  629. }, {
  630. "path": "user/storeOrderDetail",
  631. "style": {
  632. "navigationBarTitleText": "服务详情",
  633. "navigationStyle": "custom",
  634. "enablePullDownRefresh": false
  635. }
  636. }, {
  637. "path": "user/doctorOrder",
  638. "style": {
  639. "navigationBarTitleText": "问诊列表",
  640. "enablePullDownRefresh": false
  641. }
  642. }, {
  643. "path": "user/patient",
  644. "style": {
  645. "navigationBarTitleText": "百域档案",
  646. "enablePullDownRefresh": false
  647. }
  648. }, {
  649. "path": "user/addAddress",
  650. "style": {
  651. "navigationBarTitleText": "新建收货地址",
  652. "enablePullDownRefresh": false
  653. }
  654. }, {
  655. "path": "user/address",
  656. "style": {
  657. "navigationBarTitleText": "收货地址",
  658. "enablePullDownRefresh": false
  659. }
  660. }, {
  661. "path": "user/integral",
  662. "style": {
  663. "navigationBarTitleText": "我的积分",
  664. "navigationStyle": "custom",
  665. "enablePullDownRefresh": false
  666. }
  667. }, {
  668. "path": "user/refundOrderList",
  669. "style": {
  670. "navigationBarTitleText": "售后服务",
  671. "enablePullDownRefresh": false
  672. }
  673. }, {
  674. "path": "user/refundOrderDetail",
  675. "style": {
  676. "navigationBarTitleText": "处理进度",
  677. "navigationStyle": "custom",
  678. "enablePullDownRefresh": false
  679. }
  680. }, {
  681. "path": "user/refundOrderLogs",
  682. "style": {
  683. "navigationBarTitleText": "退款详情",
  684. "navigationStyle": "custom",
  685. "enablePullDownRefresh": false
  686. }
  687. }, {
  688. "path": "user/storeOrderDelivery",
  689. "style": {
  690. "navigationBarTitleText": "物流信息",
  691. "navigationStyle": "custom",
  692. "enablePullDownRefresh": false
  693. }
  694. }, {
  695. "path": "user/refundOrder",
  696. "style": {
  697. "navigationBarTitleText": "申请售后",
  698. "enablePullDownRefresh": false
  699. }
  700. }, {
  701. "path": "user/prescribeOrder",
  702. "style": {
  703. "navigationBarTitleText": "处方单",
  704. "enablePullDownRefresh": false
  705. }
  706. }, {
  707. "path": "user/pay",
  708. "style": {
  709. "navigationBarTitleText": "收款",
  710. "enablePullDownRefresh": false
  711. }
  712. }, {
  713. "path": "user/success",
  714. "style": {
  715. "navigationBarTitleText": "支付结果",
  716. "enablePullDownRefresh": false
  717. }
  718. }, {
  719. "path": "user/refundOrderProduct",
  720. "style": {
  721. "navigationBarTitleText": "订单售后",
  722. "enablePullDownRefresh": false
  723. }
  724. }, {
  725. "path": "user/refundOrderDelivery",
  726. "style": {
  727. "navigationBarTitleText": "物流信息",
  728. "enablePullDownRefresh": false
  729. }
  730. }, {
  731. "path": "user/userTui",
  732. "style": {
  733. "navigationBarTitleText": "我的推广",
  734. "enablePullDownRefresh": false
  735. }
  736. }, {
  737. "path": "user/userTuiProduct",
  738. "style": {
  739. "navigationBarTitleText": "推广产品",
  740. "enablePullDownRefresh": false
  741. }
  742. }, {
  743. "path": "user/userTuiImg",
  744. "style": {
  745. "navigationBarTitleText": "推广海报",
  746. "enablePullDownRefresh": false
  747. }
  748. }, {
  749. "path": "user/userTuiList",
  750. "style": {
  751. "navigationBarTitleText": "我的推荐人",
  752. "enablePullDownRefresh": false
  753. }
  754. }, {
  755. "path": "user/userTuiMoneyList",
  756. "style": {
  757. "navigationBarTitleText": "佣金记录",
  758. "enablePullDownRefresh": false
  759. }
  760. }, {
  761. "path": "user/userTuiOrderList",
  762. "style": {
  763. "navigationBarTitleText": "服务记录",
  764. "enablePullDownRefresh": false
  765. }
  766. }, {
  767. "path": "user/storeProductRelation",
  768. "style": {
  769. "navigationBarTitleText": "我的足迹",
  770. "enablePullDownRefresh": false
  771. }
  772. }, {
  773. "path": "user/personInfo",
  774. "style": {
  775. "navigationBarTitleText": "个人信息",
  776. "enablePullDownRefresh": false
  777. }
  778. }, {
  779. "path": "user/userTuiMoney",
  780. "style": {
  781. "navigationBarTitleText": "提现管理",
  782. "enablePullDownRefresh": false
  783. }
  784. }, {
  785. "path": "user/userTuiExtractLog",
  786. "style": {
  787. "navigationBarTitleText": "提现记录",
  788. "enablePullDownRefresh": false
  789. }
  790. }, {
  791. "path": "user/doc",
  792. "style": {
  793. "navigationBarTitleText": "百域档案",
  794. "enablePullDownRefresh": false
  795. }
  796. }, {
  797. "path": "user/addDoc",
  798. "style": {
  799. "navigationBarTitleText": "创建百域档案",
  800. "enablePullDownRefresh": false
  801. }
  802. }, {
  803. "path": "user/docDetail",
  804. "style": {
  805. "navigationBarTitleText": "百域档案",
  806. "navigationBarBackgroundColor": "#dff9f5",
  807. "enablePullDownRefresh": false
  808. }
  809. }, {
  810. "path": "user/docRecord",
  811. "style": {
  812. "navigationBarTitleText": "百域记录",
  813. "enablePullDownRefresh": false
  814. }
  815. }, {
  816. "path": "user/addDocRecord",
  817. "style": {
  818. "navigationBarTitleText": "添加百域记录",
  819. "enablePullDownRefresh": false
  820. }
  821. }, {
  822. "path": "user/userTuiAdd",
  823. "style": {
  824. "navigationBarTitleText": "申请推广员",
  825. "enablePullDownRefresh": false
  826. }
  827. }, {
  828. "path": "user/paymentOrderRemain",
  829. "style": {
  830. "navigationBarTitleText": "支付尾款",
  831. "enablePullDownRefresh": false
  832. }
  833. }, {
  834. "path": "user/otherPaymentOrder",
  835. "style": {
  836. "navigationBarTitleText": "亲友代付",
  837. "enablePullDownRefresh": false
  838. }
  839. }, {
  840. "path": "user/otherPaySuccess",
  841. "style": {
  842. "navigationBarTitleText": "支付成功",
  843. "enablePullDownRefresh": false
  844. }
  845. }, {
  846. "path": "user/otherPaymentOrderRemain",
  847. "style": {
  848. "navigationBarTitleText": "亲友代付尾款",
  849. "enablePullDownRefresh": false
  850. }
  851. }
  852. ]
  853. },
  854. {
  855. "root": "pages_company",
  856. "pages": [{
  857. "path": "auth/login",
  858. "style": {
  859. "navigationBarTitleText": "销售员登录",
  860. "app-plus": {
  861. "titleNView": false
  862. }
  863. }
  864. },
  865. {
  866. "path": "index",
  867. "style": {
  868. "navigationBarTitleText": "销售管理首页",
  869. "app-plus": {
  870. "titleNView": false
  871. }
  872. }
  873. }, {
  874. "path": "shareLive",
  875. "style": {
  876. "navigationBarTitleText": "分享直播间",
  877. "app-plus": {
  878. "titleNView": false
  879. }
  880. }
  881. },
  882. {
  883. "path": "storeOrder",
  884. "style": {
  885. "navigationBarTitleText": "服务管理",
  886. "app-plus": {
  887. "titleNView": false
  888. }
  889. }
  890. }, {
  891. "path": "storeOrderDetail",
  892. "style": {
  893. "navigationBarTitleText": "服务详情",
  894. "navigationStyle": "custom",
  895. "enablePullDownRefresh": false
  896. }
  897. },
  898. {
  899. "path": "storeProductPackage",
  900. "style": {
  901. "navigationBarTitleText": "产品套餐",
  902. "app-plus": {
  903. "titleNView": false
  904. }
  905. }
  906. },
  907. {
  908. "path": "storeProductPackageDetails",
  909. "style": {
  910. "navigationBarTitleText": "套餐详情",
  911. "app-plus": {
  912. "titleNView": false
  913. }
  914. }
  915. },
  916. {
  917. "path": "coupon",
  918. "style": {
  919. "navigationBarTitleText": "优惠券",
  920. "app-plus": {
  921. "titleNView": false
  922. }
  923. }
  924. },
  925. {
  926. "path": "couponDetails",
  927. "style": {
  928. "navigationBarTitleText": "优惠券详情",
  929. "app-plus": {
  930. "titleNView": false
  931. }
  932. }
  933. },
  934. {
  935. "path": "order/productList",
  936. "style": {
  937. "navigationBarTitleText": "产品列表",
  938. "app-plus": {
  939. "titleNView": false
  940. }
  941. }
  942. },
  943. {
  944. "path": "order/productDetails",
  945. "style": {
  946. "navigationBarTitleText": "产品详情",
  947. "enablePullDownRefresh": false
  948. }
  949. },
  950. {
  951. "path": "order/cart",
  952. "style": {
  953. "navigationBarTitleText": "购物车",
  954. "app-plus": {
  955. "titleNView": false
  956. }
  957. }
  958. },
  959. {
  960. "path": "order/confirmOrder",
  961. "style": {
  962. "navigationBarTitleText": "推荐服务信息",
  963. "app-plus": {
  964. "titleNView": false
  965. }
  966. }
  967. },
  968. {
  969. "path": "order/confirmCompanyOrder",
  970. "style": {
  971. "navigationBarTitleText": "推荐服务",
  972. "app-plus": {
  973. "titleNView": false
  974. }
  975. }
  976. },
  977. {
  978. "path": "order/coupon",
  979. "style": {
  980. "navigationBarTitleText": "制单优惠券",
  981. "app-plus": {
  982. "titleNView": false
  983. }
  984. }
  985. },
  986. {
  987. "path": "order/productShowDetails",
  988. "style": {
  989. "navigationBarTitleText": "产品详情",
  990. "app-plus": {
  991. "titleNView": false
  992. }
  993. }
  994. },
  995. {
  996. "path": "alipayImg",
  997. "style": {
  998. "navigationBarTitleText": "支付宝收款",
  999. "app-plus": {
  1000. "titleNView": false
  1001. }
  1002. }
  1003. },
  1004. {
  1005. "path": "wechatcode",
  1006. "style": {
  1007. "navigationBarTitleText": "微信收款码",
  1008. "app-plus": {
  1009. "titleNView": false
  1010. }
  1011. }
  1012. },
  1013. {
  1014. "path": "card",
  1015. "style": {
  1016. "navigationBarTitleText": "我的名片",
  1017. "app-plus": {
  1018. "titleNView": false
  1019. }
  1020. }
  1021. }
  1022. ]
  1023. },
  1024. {
  1025. "root": "pages_shopping",
  1026. "pages": [{
  1027. "path": "shopping/confirmPackageOrder",
  1028. "style": {
  1029. "navigationBarTitleText": "确认支付",
  1030. "enablePullDownRefresh": false
  1031. }
  1032. },
  1033. {
  1034. "path": "shopping/confirmCreateOrder",
  1035. "style": {
  1036. "navigationBarTitleText": "确认订单",
  1037. "enablePullDownRefresh": false
  1038. }
  1039. },
  1040. {
  1041. "path": "shopping/productList",
  1042. "style": {
  1043. "navigationBarTitleText": "产品列表",
  1044. "enablePullDownRefresh": false
  1045. }
  1046. },
  1047. {
  1048. "path": "shopping/coupon",
  1049. "style": {
  1050. "navigationBarTitleText": "优惠券",
  1051. "enablePullDownRefresh": false
  1052. }
  1053. }, {
  1054. "path": "shopping/myCoupon",
  1055. "style": {
  1056. "navigationBarTitleText": "我的优惠券",
  1057. "enablePullDownRefresh": false
  1058. }
  1059. }, {
  1060. "path": "shopping/activityDetails",
  1061. "style": {
  1062. "navigationBarTitleText": "活动",
  1063. "enablePullDownRefresh": false
  1064. }
  1065. },
  1066. {
  1067. "path": "live/storeOrderDetail",
  1068. "style": {
  1069. "navigationStyle": "custom",
  1070. "enablePullDownRefresh": false
  1071. }
  1072. }, {
  1073. "path": "live/complaint",
  1074. "style": {
  1075. "navigationBarTitleText": "我的反馈",
  1076. "navigationBarTextStyle": "black",
  1077. "app-plus": {
  1078. "bounce": "none"
  1079. }
  1080. }
  1081. },
  1082. {
  1083. "path": "live/complaintList",
  1084. "style": {
  1085. "navigationBarTitleText": "反馈与投诉",
  1086. "navigationBarTextStyle": "black",
  1087. "app-plus": {
  1088. "bounce": "none"
  1089. }
  1090. }
  1091. },
  1092. {
  1093. "path": "live/goods",
  1094. "style": {
  1095. "navigationBarTitleText": "商品详情",
  1096. "enablePullDownRefresh": false
  1097. }
  1098. }, {
  1099. "path": "live/integral",
  1100. "style": {
  1101. "navigationBarTitleText": "积分",
  1102. "enablePullDownRefresh": false
  1103. }
  1104. },
  1105. {
  1106. "path": "live/order",
  1107. "style": {
  1108. "navigationBarTitleText": "我的订单",
  1109. "navigationBarTextStyle": "black",
  1110. "app-plus": {
  1111. "bounce": "none"
  1112. }
  1113. }
  1114. },
  1115. {
  1116. "path": "live/confirmCreateOrder",
  1117. "style": {
  1118. "navigationBarTitleText": "确认订单",
  1119. "navigationBarTextStyle": "black",
  1120. "app-plus": {
  1121. "bounce": "none"
  1122. }
  1123. }
  1124. },
  1125. {
  1126. "path": "live/paymentOrder",
  1127. "style": {
  1128. "navigationBarTitleText": "支付订单",
  1129. "navigationBarTextStyle": "black",
  1130. "app-plus": {
  1131. "bounce": "none"
  1132. }
  1133. }
  1134. },
  1135. {
  1136. "path": "live/refundOrder",
  1137. "style": {
  1138. "navigationBarTitleText": "申请售后",
  1139. "enablePullDownRefresh": false
  1140. }
  1141. },
  1142. {
  1143. "path": "live/refundOrderProduct",
  1144. "style": {
  1145. "navigationBarTitleText": "订单售后",
  1146. "enablePullDownRefresh": false
  1147. }
  1148. }, {
  1149. "path": "live/storeOrderDelivery",
  1150. "style": {
  1151. "navigationBarTitleText": "物流信息",
  1152. "navigationStyle": "custom",
  1153. "enablePullDownRefresh": false
  1154. }
  1155. },
  1156. {
  1157. "path": "live/storeOrderRefundList",
  1158. "style": {
  1159. "navigationBarTitleText": "我的售后",
  1160. "enablePullDownRefresh": false,
  1161. "navigationBarBackgroundColor": "#ffffff",
  1162. "navigationBarTextStyle": "black"
  1163. }
  1164. },
  1165. {
  1166. "path": "live/storeOrderRefundSubmit",
  1167. "style": {
  1168. "navigationBarTitleText": "提交售后",
  1169. "navigationBarTextStyle": "black",
  1170. "navigationBarBackgroundColor": "#ffffff"
  1171. }
  1172. },
  1173. {
  1174. "path": "live/success",
  1175. "style": {
  1176. "navigationBarTitleText": "支付成功",
  1177. "navigationBarTextStyle": "black",
  1178. "app-plus": {
  1179. "bounce": "none"
  1180. }
  1181. }
  1182. },
  1183. {
  1184. "path": "live/refundOrderDetail",
  1185. "style": {
  1186. "navigationBarTitleText": "",
  1187. "navigationStyle": "custom",
  1188. "scrollIndicator": "none",
  1189. "navigationBarTextStyle": "black",
  1190. "app-plus": {
  1191. "bounce": "none"
  1192. }
  1193. }
  1194. },
  1195. {
  1196. "path": "live/refundOrderDelivery",
  1197. "style": {
  1198. "navigationBarTitleText": "物流信息",
  1199. "navigationBarTextStyle": "black",
  1200. "app-plus": {
  1201. "bounce": "none"
  1202. }
  1203. }
  1204. }
  1205. ]
  1206. },
  1207. {
  1208. "root": "pages_manage",
  1209. "pages": [{
  1210. "path": "login",
  1211. "style": {
  1212. "navigationBarTitleText": "登录",
  1213. "enablePullDownRefresh": false
  1214. }
  1215. },
  1216. {
  1217. "path": "index",
  1218. "style": {
  1219. "navigationBarTitleText": "数据",
  1220. "enablePullDownRefresh": false
  1221. }
  1222. },
  1223. {
  1224. "path": "dataDetails",
  1225. "style": {
  1226. "navigationBarTitleText": "课程数据详情",
  1227. "enablePullDownRefresh": false
  1228. }
  1229. },
  1230. {
  1231. "path": "statistic",
  1232. "style": {
  1233. "navigationBarTitleText": "课程统计",
  1234. "enablePullDownRefresh": false
  1235. }
  1236. },
  1237. {
  1238. "path": "manageDataDetail",
  1239. "style": {
  1240. "navigationBarTitleText": "销售详情",
  1241. "enablePullDownRefresh": false
  1242. }
  1243. }
  1244. ]
  1245. },
  1246. {
  1247. "root": "pages_managedata",
  1248. "pages": [{
  1249. "path": "coursedetail",
  1250. "style": {
  1251. "navigationBarTitleText": "课程详情",
  1252. "enablePullDownRefresh": false
  1253. }
  1254. },
  1255. {
  1256. "path": "vipdetail",
  1257. "style": {
  1258. "navigationBarTitleText": "会员详情",
  1259. "enablePullDownRefresh": false
  1260. }
  1261. },
  1262. {
  1263. "path": "userInfo",
  1264. "style": {
  1265. "navigationBarTitleText": "用户信息",
  1266. "enablePullDownRefresh": false
  1267. }
  1268. },
  1269. {
  1270. "path": "editUser",
  1271. "style": {
  1272. "navigationBarTitleText": "设置",
  1273. "enablePullDownRefresh": false
  1274. }
  1275. },
  1276. {
  1277. "path": "lableSetup",
  1278. "style": {
  1279. "navigationBarTitleText": "标签设置",
  1280. "enablePullDownRefresh": false
  1281. }
  1282. },
  1283. {
  1284. "path": "about",
  1285. "style": {
  1286. "navigationBarTitleText": "关于我们",
  1287. "enablePullDownRefresh": false
  1288. }
  1289. },
  1290. {
  1291. "path": "users",
  1292. "style": {
  1293. "navigationBarTitleText": "审核销售",
  1294. "enablePullDownRefresh": false
  1295. }
  1296. },
  1297. {
  1298. "path": "managedetail",
  1299. "style": {
  1300. "navigationBarTitleText": "审核销售",
  1301. "enablePullDownRefresh": false
  1302. }
  1303. },
  1304. {
  1305. "path": "exprotList",
  1306. "style": {
  1307. "navigationBarTitleText": "审核列表",
  1308. "enablePullDownRefresh": false
  1309. }
  1310. },
  1311. {
  1312. "path": "saleInfo",
  1313. "style": {
  1314. "navigationBarTitleText": "员工详情",
  1315. "enablePullDownRefresh": false
  1316. }
  1317. },
  1318. {
  1319. "path": "changeVip",
  1320. "style": {
  1321. "navigationBarTitleText": "更换会员归属",
  1322. "enablePullDownRefresh": false
  1323. }
  1324. },
  1325. {
  1326. "path": "voice",
  1327. "style": {
  1328. "navigationBarTitleText": "声音采集",
  1329. "enablePullDownRefresh": false,
  1330. "navigationBarBackgroundColor": "#ffffff",
  1331. "navigationBarTextStyle": "black",
  1332. "app-plus": {
  1333. "bounce": "none" // 页面回弹
  1334. }
  1335. }
  1336. }, {
  1337. "path": "voiceItem",
  1338. "style": {
  1339. "navigationBarTitleText": "声音录制",
  1340. "enablePullDownRefresh": false,
  1341. "navigationBarBackgroundColor": "#ffffff",
  1342. "navigationBarTextStyle": "black",
  1343. "app-plus": {
  1344. "bounce": "none" // 页面回弹
  1345. }
  1346. }
  1347. }, {
  1348. "path": "voiceList",
  1349. "style": {
  1350. "navigationBarTitleText": "声音录制",
  1351. "enablePullDownRefresh": false,
  1352. "navigationBarBackgroundColor": "#ffffff",
  1353. "navigationBarTextStyle": "black",
  1354. "app-plus": {
  1355. "bounce": "none" // 页面回弹
  1356. }
  1357. }
  1358. }
  1359. ]
  1360. },
  1361. {
  1362. "root": "pages_course",
  1363. "pages": [{
  1364. "path": "reward",
  1365. "style": {
  1366. "navigationBarTitleText": "领取奖励",
  1367. "enablePullDownRefresh": false
  1368. }
  1369. },
  1370. {
  1371. "path": "becomeVIP",
  1372. "style": {
  1373. "navigationBarTitleText": "注册会员",
  1374. "enablePullDownRefresh": false
  1375. }
  1376. },
  1377. {
  1378. "path": "becomeSale",
  1379. "style": {
  1380. "navigationBarTitleText": "注册销售",
  1381. "enablePullDownRefresh": false
  1382. }
  1383. },
  1384. {
  1385. "path": "webview",
  1386. "style": {
  1387. "navigationBarTitleText": "授权登录",
  1388. "enablePullDownRefresh": false
  1389. }
  1390. },
  1391. {
  1392. "path": "videovip",
  1393. "style": {
  1394. "navigationBarTitleText": "看课详情",
  1395. "enablePullDownRefresh": false
  1396. }
  1397. },
  1398. {
  1399. "path": "learn",
  1400. "style": {
  1401. "navigationBarTitleText": "百域生活方式指导",
  1402. "enablePullDownRefresh": false
  1403. }
  1404. },
  1405. {
  1406. "path": "teacherClassroom",
  1407. "style": {
  1408. "navigationBarTitleText": "名师课堂",
  1409. "enablePullDownRefresh": false
  1410. }
  1411. },
  1412. {
  1413. "path": "video",
  1414. "style": {
  1415. "navigationBarTitleText": "",
  1416. "enablePullDownRefresh": false,
  1417. "navigationStyle": "custom"
  1418. }
  1419. }, {
  1420. "path": "livingList",
  1421. "style": {
  1422. "navigationBarTitleText": "课程列表",
  1423. "navigationBarTextStyle": "black",
  1424. "app-plus": {
  1425. "bounce": "none"
  1426. }
  1427. }
  1428. }, {
  1429. "path": "living",
  1430. "style": {
  1431. "navigationBarTitleText": "",
  1432. "navigationBarTextStyle": "black",
  1433. "enablePullDownRefresh": true,
  1434. "navigationStyle": "custom",
  1435. "softinputMode": "adjustResize", // 必须配置这个才能正常获取高度
  1436. "app-plus": {
  1437. "bounce": "none",
  1438. "videoFullscreen": true,
  1439. "videoAutoFullscreen": false,
  1440. "videoObjectFit": "contain"
  1441. },
  1442. "h5": {
  1443. "videoFullscreen": true
  1444. }
  1445. }
  1446. }
  1447. ]
  1448. }
  1449. ],
  1450. "globalStyle": {
  1451. "navigationBarTextStyle": "black",
  1452. "navigationBarTitleText": "百域承品",
  1453. "navigationBarBackgroundColor": "#FFFFFF",
  1454. "backgroundColor": "#FFFFFF"
  1455. },
  1456. "tabBar": {
  1457. "color": "#666666",
  1458. "selectedColor": "#2BC7B9",
  1459. // "custom": true,
  1460. "borderStyle": "white",
  1461. "backgroundColor": "#ffffff",
  1462. "height": "64px",
  1463. "fontSize": "12px",
  1464. "iconWidth": "18px",
  1465. "spacing": "4px",
  1466. "list": [{
  1467. "pagePath": "pages/home/index",
  1468. "iconPath": "/static/tabbar/home.png",
  1469. "selectedIconPath": "/static/tabbar/home_sel.png",
  1470. "text": "首页"
  1471. },
  1472. // {
  1473. // "pagePath": "pages/healthy/index",
  1474. // "iconPath": "/static/tabbar/health.png",
  1475. // "selectedIconPath": "/static/tabbar/health_sel.png",
  1476. // "text": "百域百科"
  1477. // }
  1478. {
  1479. "pagePath": "pages/shopping/cart",
  1480. "iconPath": "/static/tabbar/cart.png",
  1481. "selectedIconPath": "/static/tabbar/cart_sel.png",
  1482. "text": "购物车"
  1483. },
  1484. // {
  1485. // "pagePath": "pages/shopping/index",
  1486. // "iconPath": "/static/tabbar/shop_mall.png",
  1487. // "selectedIconPath": "/static/tabbar/shop_mall_sel.png",
  1488. // "text": "百域商城"
  1489. // },
  1490. // {
  1491. // "pagePath": "pages/healthy/idea",
  1492. // "iconPath": "/static/tabbar/archive.png",
  1493. // "selectedIconPath": "/static/tabbar/archive_sel.png",
  1494. // "text": "百域档案"
  1495. // },
  1496. {
  1497. "pagePath": "pages/user/index",
  1498. "iconPath": "/static/tabbar/my.png",
  1499. "selectedIconPath": "/static/tabbar/my_sel.png",
  1500. "text": "我的"
  1501. }
  1502. ]
  1503. }
  1504. }