pages.json 33 KB

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