pages.json 35 KB

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