pages.json 28 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页
  3. {
  4. "path": "pages/guide/index",
  5. "style": {
  6. "app-plus": {
  7. "titleNView": false //禁用原生导航栏
  8. }
  9. }
  10. },
  11. {
  12. "path": "pages/index/index",
  13. "style": {
  14. "enablePullDownRefresh": true,
  15. "navigationBarTitleText": "",
  16. "navigationStyle": "custom",
  17. "navigationBarTextStyle": "white",
  18. "app-plus": {
  19. "scrollIndicator": "none"
  20. }
  21. }
  22. },
  23. {
  24. "path": "pages/order_addcart/order_addcart",
  25. "style": {
  26. "navigationBarTitleText": "红包",
  27. "enablePullDownRefresh": true,
  28. "app-plus": {
  29. // #ifdef APP-PLUS
  30. "titleNView": {
  31. "type": "default"
  32. }
  33. // #endif
  34. }
  35. }
  36. },
  37. {
  38. "path": "pages/order_addcart/wallet_received/index",
  39. "style": {
  40. "navigationBarTitleText": "已领取红包",
  41. "enablePullDownRefresh": true,
  42. "app-plus": {
  43. // #ifdef APP-PLUS
  44. "titleNView": {
  45. "type": "default"
  46. }
  47. // #endif
  48. }
  49. }
  50. },
  51. {
  52. "path": "pages/order_addcart/wallet_missed/index",
  53. "style": {
  54. "navigationBarTitleText": "已错失红包",
  55. "enablePullDownRefresh": true,
  56. "app-plus": {
  57. // #ifdef APP-PLUS
  58. "titleNView": {
  59. "type": "default"
  60. }
  61. // #endif
  62. }
  63. }
  64. },
  65. {
  66. "path": "pages/order_addcart/wallet_accelerate/index",
  67. "style": {
  68. "navigationBarTitleText": "加速",
  69. "app-plus": {
  70. // #ifdef APP-PLUS
  71. "titleNView": {
  72. "type": "default"
  73. }
  74. // #endif
  75. }
  76. }
  77. },
  78. {
  79. "path": "pages/user/index",
  80. "style": {
  81. "navigationBarTitleText": "个人中心",
  82. "enablePullDownRefresh": true
  83. // #ifdef MP || APP-PLUS
  84. ,
  85. "navigationStyle": "custom",
  86. // "navigationBarBackgroundColor": "#e93323",
  87. "navigationBarTextStyle": "black"
  88. // #endif
  89. }
  90. },
  91. {
  92. "path": "pages/goods_cate/goods_cate",
  93. "style": {
  94. "navigationBarTitleText": "商品分类",
  95. "app-plus": {
  96. // #ifdef APP-PLUS
  97. "titleNView": {
  98. "type": "default"
  99. }
  100. // #endif
  101. }
  102. }
  103. }
  104. //#ifdef H5
  105. ,
  106. {
  107. "path": "pages/auth/index",
  108. "style": {
  109. "navigationBarTitleText": ""
  110. }
  111. }
  112. //#endif
  113. ],
  114. "subPackages": [
  115. {
  116. "root": "pages/extension",
  117. "name": "extension",
  118. "pages": [
  119. {
  120. "path": "customer_list/chat",
  121. "style": {
  122. "navigationBarTitleText": "对话详情",
  123. "navigationStyle": "custom",
  124. "app-plus": {
  125. "scrollIndicator": false //禁用原生导航栏
  126. // #ifdef APP-PLUS
  127. ,
  128. "titleNView": {
  129. "type": "default"
  130. }
  131. // #endif
  132. },
  133. "disableScroll": true
  134. }
  135. },
  136. {
  137. "path": "news_list/index",
  138. "style": {
  139. "navigationBarTitleText": "资讯",
  140. "app-plus": {
  141. // #ifdef APP-PLUS
  142. "titleNView": {
  143. "type": "default"
  144. }
  145. // #endif
  146. }
  147. }
  148. },
  149. {
  150. "path": "news_details/index",
  151. "style": {
  152. "navigationBarTitleText": "资讯详情",
  153. "app-plus": {
  154. // #ifdef APP-PLUS
  155. "titleNView": {
  156. "type": "default"
  157. }
  158. // #endif
  159. }
  160. }
  161. }
  162. ]
  163. },
  164. {
  165. "root": "pages/goods",
  166. "name": "goods",
  167. "pages": [
  168. {
  169. "path": "goods_list_mall/index",
  170. "style": {
  171. "navigationBarTitleText": "商品列表",
  172. "app-plus": {
  173. // #ifdef APP-PLUS
  174. "titleNView": {
  175. "type": "default"
  176. }
  177. // #endif
  178. }
  179. }
  180. },
  181. {
  182. "path": "goods_list/index",
  183. "style": {
  184. "navigationBarTitleText": "商品列表",
  185. "app-plus": {
  186. // #ifdef APP-PLUS
  187. "titleNView": {
  188. "type": "default"
  189. }
  190. // #endif
  191. }
  192. }
  193. },
  194. {
  195. "path": "order_pay_status/index",
  196. "style": {
  197. "navigationBarTitleText": "支付成功",
  198. "app-plus": {
  199. // #ifdef APP-PLUS
  200. "titleNView": {
  201. "type": "default"
  202. }
  203. // #endif
  204. }
  205. }
  206. },
  207. {
  208. "path": "admin_order_detail/index",
  209. "style": {
  210. "navigationBarTitleText": "订单详情",
  211. "app-plus": {
  212. // #ifdef APP-PLUS
  213. "titleNView": {
  214. "type": "default"
  215. }
  216. // #endif
  217. }
  218. }
  219. },
  220. {
  221. "path": "goods_comment_con/index",
  222. "style": {
  223. "navigationBarTitleText": "商品评价",
  224. "app-plus": {
  225. // #ifdef APP-PLUS
  226. "titleNView": {
  227. "type": "default"
  228. }
  229. // #endif
  230. }
  231. }
  232. },
  233. {
  234. "path": "goods_comment_con/lottery_comment",
  235. "style": {
  236. "navigationBarTitleText": "订单评价",
  237. "app-plus": {
  238. // #ifdef APP-PLUS
  239. "titleNView": {
  240. "type": "default"
  241. }
  242. // #endif
  243. }
  244. }
  245. },
  246. {
  247. "path": "goods_comment_list/index",
  248. "style": {
  249. "navigationBarTitleText": "商品评分",
  250. "app-plus": {
  251. // #ifdef APP-PLUS
  252. "titleNView": {
  253. "type": "default"
  254. }
  255. // #endif
  256. }
  257. }
  258. },
  259. {
  260. "path": "goods_details_store/index",
  261. "style": {
  262. "navigationBarTitleText": "门店列表",
  263. "app-plus": {
  264. // #ifdef APP-PLUS
  265. "titleNView": {
  266. "type": "default"
  267. }
  268. // #endif
  269. }
  270. }
  271. },
  272. {
  273. "path": "goods_logistics/index",
  274. "style": {
  275. "navigationBarTitleText": "物流信息",
  276. "app-plus": {
  277. // #ifdef APP-PLUS
  278. "titleNView": {
  279. "type": "default"
  280. }
  281. // #endif
  282. }
  283. }
  284. },
  285. {
  286. "path": "goods_return/index",
  287. "style": {
  288. "navigationBarTitleText": "申请退货",
  289. "app-plus": {
  290. // #ifdef APP-PLUS
  291. "titleNView": {
  292. "type": "default"
  293. }
  294. // #endif
  295. }
  296. }
  297. },
  298. {
  299. "path": "goods_return_list/index",
  300. "style": {
  301. "navigationBarTitleText": "售后列表",
  302. "app-plus": {
  303. // #ifdef APP-PLUS
  304. "titleNView": {
  305. "type": "default"
  306. }
  307. // #endif
  308. }
  309. }
  310. },
  311. {
  312. "path": "lottery/grids/index",
  313. "style": {
  314. "navigationBarTitleText": "抽奖活动",
  315. "app-plus": {
  316. // #ifdef APP-PLUS
  317. "titleNView": {
  318. "type": "default"
  319. }
  320. // #endif
  321. }
  322. }
  323. },
  324. {
  325. "path": "lottery/grids/record",
  326. "style": {
  327. "navigationBarTitleText": "中奖记录",
  328. "app-plus": {
  329. // #ifdef APP-PLUS
  330. "titleNView": {
  331. "type": "default"
  332. }
  333. // #endif
  334. }
  335. }
  336. },
  337. {
  338. "path": "order_confirm/index",
  339. "style": {
  340. "navigationBarTitleText": "提交订单",
  341. "app-plus": {
  342. // #ifdef APP-PLUS
  343. "titleNView": {
  344. "type": "default"
  345. }
  346. // #endif
  347. }
  348. }
  349. },
  350. {
  351. "path": "order_details/index",
  352. "style": {
  353. "navigationBarTitleText": "订单详情",
  354. "app-plus": {
  355. // #ifdef APP-PLUS
  356. "titleNView": {
  357. "type": "default"
  358. }
  359. // #endif
  360. }
  361. }
  362. },
  363. {
  364. "path": "order_list/index",
  365. "style": {
  366. "navigationBarTitleText": "我的订单",
  367. "app-plus": {
  368. // #ifdef APP-PLUS
  369. "titleNView": {
  370. "type": "default"
  371. }
  372. // #endif
  373. }
  374. }
  375. },
  376. {
  377. "path": "order_refund_goods/index",
  378. "style": {
  379. "navigationBarTitleText": "退回商品",
  380. "app-plus": {
  381. // #ifdef APP-PLUS
  382. "titleNView": {
  383. "type": "default"
  384. }
  385. // #endif
  386. }
  387. }
  388. }
  389. ]
  390. },
  391. {
  392. "root": "pages/users",
  393. "name": "users",
  394. "pages": [
  395. {
  396. "path": "user_vip_areer/index",
  397. "style": {
  398. "navigationBarTitleText": "经验记录",
  399. "app-plus": {
  400. // #ifdef APP-PLUS
  401. "titleNView": {
  402. "type": "default"
  403. }
  404. // #endif
  405. }
  406. }
  407. },
  408. {
  409. "path": "privacy/index",
  410. "style": {
  411. "navigationBarTitleText": "隐私协议",
  412. "app-plus": {
  413. // #ifdef APP-PLUS
  414. "titleNView": {
  415. "type": "default"
  416. }
  417. // #endif
  418. }
  419. }
  420. },
  421. {
  422. "path": "user_cancellation/index",
  423. "style": {
  424. "navigationBarTitleText": "注销说明",
  425. "app-plus": {
  426. // #ifdef APP-PLUS
  427. "titleNView": {
  428. "type": "default"
  429. }
  430. // #endif
  431. }
  432. }
  433. },
  434. {
  435. "path": "message_center/index",
  436. "style": {
  437. "navigationBarTitleText": "消息中心",
  438. "enablePullDownRefresh": true,
  439. "app-plus": {
  440. // #ifdef APP-PLUS
  441. "titleNView": {
  442. "type": "default"
  443. }
  444. // #endif
  445. }
  446. }
  447. },
  448. {
  449. "path": "message_center/messageDetail",
  450. "style": {
  451. "navigationBarTitleText": "消息详情",
  452. "app-plus": {
  453. // #ifdef APP-PLUS
  454. "titleNView": {
  455. "type": "default"
  456. }
  457. // #endif
  458. }
  459. }
  460. },
  461. {
  462. "path": "user_invoice_order/index",
  463. "style": {
  464. "navigationBarTitleText": "订单详情",
  465. "app-plus": {
  466. // #ifdef APP-PLUS
  467. "titleNView": {
  468. "type": "default"
  469. }
  470. // #endif
  471. }
  472. }
  473. },
  474. {
  475. "path": "scan_login/index",
  476. "style": {
  477. "navigationBarTitleText": "授权登录"
  478. }
  479. },
  480. {
  481. "path": "user_invoice_list/index",
  482. "style": {
  483. "navigationBarTitleText": "共富1580",
  484. "app-plus": {
  485. // #ifdef APP-PLUS
  486. "titleNView": {
  487. "type": "default"
  488. }
  489. // #endif
  490. }
  491. }
  492. },
  493. {
  494. "path": "user_invoice_form/index",
  495. "style": {
  496. "navigationBarTitleText": "添加新发票",
  497. "app-plus": {
  498. // #ifdef APP-PLUS
  499. "titleNView": {
  500. "type": "default"
  501. }
  502. // #endif
  503. }
  504. }
  505. },
  506. //#ifdef H5
  507. {
  508. "path": "alipay_invoke/index",
  509. "style": {
  510. "navigationBarTitleText": "支付提示"
  511. }
  512. },
  513. //#endif
  514. {
  515. "path": "wechat_login/index",
  516. "style": {
  517. "navigationBarTitleText": "账户登录",
  518. "navigationStyle": "custom",
  519. "app-plus": {
  520. "scrollIndicator": false //禁用原生导航栏
  521. }
  522. }
  523. },
  524. {
  525. "path": "retrievePassword/index",
  526. "style": {
  527. "navigationBarTitleText": "忘记密码",
  528. "app-plus": {
  529. // #ifdef APP-PLUS
  530. "titleNView": {
  531. "type": "default"
  532. }
  533. // #endif
  534. }
  535. }
  536. },
  537. {
  538. "path": "user_info/index",
  539. "style": {
  540. "navigationBarTitleText": "个人资料",
  541. "app-plus": {
  542. // #ifdef APP-PLUS
  543. "titleNView": {
  544. "type": "default"
  545. }
  546. // #endif
  547. }
  548. }
  549. },
  550. {
  551. "path": "user_get_coupon/index",
  552. "style": {
  553. "navigationBarTitleText": "领取优惠券",
  554. "app-plus": {
  555. // #ifdef APP-PLUS
  556. "titleNView": {
  557. "type": "default"
  558. }
  559. // #endif
  560. }
  561. }
  562. },
  563. {
  564. "path": "visit_list/index",
  565. "style": {
  566. "navigationBarTitleText": "浏览记录",
  567. "app-plus": {
  568. // #ifdef APP-PLUS
  569. "titleNView": {
  570. "type": "default"
  571. }
  572. // #endif
  573. }
  574. }
  575. },
  576. {
  577. "path": "user_goods_collection/index",
  578. "style": {
  579. "navigationBarTitleText": "收藏商品",
  580. "app-plus": {
  581. // #ifdef APP-PLUS
  582. "titleNView": {
  583. "type": "default"
  584. }
  585. // #endif
  586. }
  587. }
  588. },
  589. {
  590. "path": "user_sgin/index",
  591. "style": {
  592. "navigationBarTitleText": "签到",
  593. // #ifdef MP
  594. // "navigationBarTextStyle": "white",
  595. // "navigationBarBackgroundColor": "#e93323"
  596. // #endif
  597. "app-plus": {
  598. // #ifdef APP-PLUS
  599. "titleNView": {
  600. "type": "default"
  601. }
  602. // #endif
  603. }
  604. }
  605. },
  606. {
  607. "path": "user_sgin_list/index",
  608. "style": {
  609. "navigationBarTitleText": "签到记录",
  610. "app-plus": {
  611. // #ifdef APP-PLUS
  612. "titleNView": {
  613. "type": "default"
  614. }
  615. // #endif
  616. }
  617. }
  618. },
  619. {
  620. "path": "user_money/index",
  621. "style": {
  622. "navigationBarTitleText": "我的账户",
  623. "app-plus": {
  624. // #ifdef APP-PLUS
  625. "titleNView": {
  626. "type": "default"
  627. }
  628. // #endif
  629. }
  630. }
  631. },
  632. {
  633. "path": "user_bill/index",
  634. "style": {
  635. "navigationBarTitleText": "账单明细",
  636. "app-plus": {
  637. // #ifdef APP-PLUS
  638. "titleNView": {
  639. "type": "default"
  640. }
  641. // #endif
  642. }
  643. }
  644. },
  645. {
  646. "path": "user_integral/index",
  647. "style": {
  648. "navigationBarTitleText": "积分详情"
  649. // #ifdef MP
  650. ,
  651. "navigationBarTextStyle": "black",
  652. "navigationBarBackgroundColor": "#FFFFFF"
  653. // #endif
  654. ,
  655. "app-plus": {
  656. // #ifdef APP-PLUS
  657. "titleNView": {
  658. "type": "default"
  659. }
  660. // #endif
  661. }
  662. }
  663. },
  664. {
  665. "path": "user_red_integral/index",
  666. "style": {
  667. "navigationBarTitleText": "红色积分明细"
  668. // #ifdef MP
  669. ,
  670. "navigationBarTextStyle": "black",
  671. "navigationBarBackgroundColor": "#FFFFFF"
  672. // #endif
  673. ,
  674. "app-plus": {
  675. // #ifdef APP-PLUS
  676. "titleNView": {
  677. "type": "default"
  678. }
  679. // #endif
  680. }
  681. }
  682. },
  683. {
  684. "path": "user_earningsCount/index",
  685. "style": {
  686. "navigationBarTitleText": "收益记录"
  687. // #ifdef MP
  688. ,
  689. "navigationBarTextStyle": "black",
  690. "navigationBarBackgroundColor": "#FFFFFF"
  691. // #endif
  692. ,
  693. "app-plus": {
  694. // #ifdef APP-PLUS
  695. "titleNView": {
  696. "type": "default"
  697. }
  698. // #endif
  699. }
  700. }
  701. },
  702. {
  703. "path": "user_directPartner/index",
  704. "style": {
  705. "navigationBarTitleText": "直属伙伴"
  706. // #ifdef MP
  707. ,
  708. "navigationBarTextStyle": "black",
  709. "navigationBarBackgroundColor": "#FFFFFF"
  710. // #endif
  711. ,
  712. "app-plus": {
  713. // #ifdef APP-PLUS
  714. "titleNView": {
  715. "type": "default"
  716. }
  717. // #endif
  718. }
  719. }
  720. },
  721. {
  722. "path": "user_green_integral/index",
  723. "style": {
  724. "navigationBarTitleText": "绿色积分明细"
  725. // #ifdef MP
  726. ,
  727. "navigationBarTextStyle": "black",
  728. "navigationBarBackgroundColor": "#FFFFFF"
  729. // #endif
  730. ,
  731. "app-plus": {
  732. // #ifdef APP-PLUS
  733. "titleNView": {
  734. "type": "default"
  735. }
  736. // #endif
  737. }
  738. }
  739. },
  740. {
  741. "path": "user_wallet/index",
  742. "style": {
  743. "navigationBarTitleText": "我的钱包"
  744. // #ifdef MP
  745. ,
  746. "navigationBarTextStyle": "black",
  747. "navigationBarBackgroundColor": "#FFFFFF"
  748. // #endif
  749. ,
  750. "app-plus": {
  751. // #ifdef APP-PLUS
  752. "titleNView": {
  753. "type": "default"
  754. }
  755. // #endif
  756. }
  757. }
  758. },
  759. {
  760. "path": "user_coupon/index",
  761. "style": {
  762. "navigationBarTitleText": "我的优惠券",
  763. "app-plus": {
  764. // #ifdef APP-PLUS
  765. "titleNView": {
  766. "type": "default"
  767. }
  768. // #endif
  769. }
  770. }
  771. },
  772. {
  773. "path": "user_spread_user/index",
  774. "style": {
  775. "navigationBarTitleText": "我的推广"
  776. // #ifdef MP
  777. ,
  778. "navigationBarTextStyle": "black",
  779. "navigationBarBackgroundColor": "#FFFFFF"
  780. // #endif
  781. ,
  782. "app-plus": {
  783. // #ifdef APP-PLUS
  784. "titleNView": {
  785. "type": "default"
  786. }
  787. // #endif
  788. }
  789. }
  790. },
  791. {
  792. "path": "user_spread_code/index",
  793. "style": {
  794. "navigationBarTitleText": "分销海报",
  795. "app-plus": {
  796. // #ifdef APP-PLUS
  797. "titleNView": {
  798. "type": "default"
  799. }
  800. // #endif
  801. }
  802. }
  803. },
  804. {
  805. "path": "user_spread_money/index",
  806. "style": {
  807. "navigationBarTitleText": "佣金记录"
  808. // #ifdef MP
  809. ,
  810. "navigationBarTextStyle": "black",
  811. "navigationBarBackgroundColor": "#FFFFFF"
  812. // #endif
  813. ,
  814. "app-plus": {
  815. // #ifdef APP-PLUS
  816. "titleNView": {
  817. "type": "default"
  818. }
  819. // #endif
  820. }
  821. }
  822. },
  823. {
  824. "path": "user_cash/index",
  825. "style": {
  826. "navigationBarTitleText": "提现",
  827. "navigationBarBackgroundColor": "#FFFFFF"
  828. // #ifdef MP || APP-PLUS
  829. ,
  830. "navigationBarTextStyle": "black"
  831. // #endif
  832. ,
  833. "app-plus": {
  834. // #ifdef APP-PLUS
  835. "titleNView": {
  836. "type": "default"
  837. }
  838. // #endif
  839. }
  840. }
  841. },
  842. {
  843. "path": "user_distribution_level/index",
  844. "style": {
  845. "navigationBarTitleText": "分销等级",
  846. "navigationBarBackgroundColor": "#232323"
  847. // #ifdef MP || APP-PLUS
  848. ,
  849. "navigationBarTextStyle": "white"
  850. // #endif
  851. ,
  852. "app-plus": {
  853. // #ifdef APP-PLUS
  854. "titleNView": {
  855. "type": "default"
  856. }
  857. // #endif
  858. }
  859. }
  860. },
  861. {
  862. "path": "user_address_list/index",
  863. "style": {
  864. "navigationBarTitleText": "地址管理",
  865. "app-plus": {
  866. // #ifdef APP-PLUS
  867. "titleNView": {
  868. "type": "default"
  869. }
  870. // #endif
  871. }
  872. }
  873. },
  874. {
  875. "path": "user_address/index",
  876. "style": {
  877. "navigationBarTitleText": "添加地址",
  878. "app-plus": {
  879. // #ifdef APP-PLUS
  880. "titleNView": {
  881. "type": "default"
  882. }
  883. // #endif
  884. }
  885. }
  886. },
  887. {
  888. "path": "user_team/index",
  889. "style": {
  890. "navigationBarTitleText": "我的团队",
  891. "app-plus": {
  892. // #ifdef APP-PLUS
  893. "titleNView": {
  894. "type": "default"
  895. }
  896. // #endif
  897. }
  898. }
  899. },
  900. {
  901. "path": "user_phone/index",
  902. "style": {
  903. "navigationBarTitleText": "绑定手机",
  904. // #ifdef MP
  905. // "navigationBarTextStyle": "white",
  906. // "navigationBarBackgroundColor": "#e93323"
  907. // #endif
  908. "app-plus": {
  909. // #ifdef APP-PLUS
  910. "titleNView": {
  911. "type": "default"
  912. }
  913. // #endif
  914. }
  915. }
  916. },
  917. {
  918. "path": "user_payment/index",
  919. "style": {
  920. "navigationBarTitleText": "余额充值",
  921. "app-plus": {
  922. // #ifdef APP-PLUS
  923. "titleNView": {
  924. "type": "default"
  925. }
  926. // #endif
  927. }
  928. }
  929. },
  930. {
  931. "path": "user_pwd_edit/index",
  932. "style": {
  933. "navigationBarTitleText": "修改密码"
  934. // #ifdef MP
  935. // ,
  936. // "navigationBarTextStyle": "white"
  937. // "navigationBarBackgroundColor": "#e93323"
  938. // #endif
  939. ,
  940. "app-plus": {
  941. // #ifdef APP-PLUS
  942. "titleNView": {
  943. "type": "default"
  944. }
  945. // #endif
  946. }
  947. }
  948. },
  949. {
  950. "path": "promoter-list/index",
  951. "style": {
  952. "navigationBarTitleText": "推广人列表"
  953. // #ifdef MP
  954. ,
  955. "navigationBarBackgroundColor": "#FFFFFF",
  956. "navigationBarTextStyle": "black"
  957. // #endif
  958. ,
  959. "app-plus": {
  960. // #ifdef APP-PLUS
  961. "titleNView": {
  962. "type": "default"
  963. }
  964. // #endif
  965. }
  966. }
  967. },
  968. {
  969. "path": "promoter-order/index",
  970. "style": {
  971. "navigationBarTitleText": "推广人订单"
  972. // #ifdef MP
  973. ,
  974. "navigationBarTextStyle": "black",
  975. "navigationBarBackgroundColor": "#FFFFFF"
  976. // #endif
  977. ,
  978. "app-plus": {
  979. // #ifdef APP-PLUS
  980. "titleNView": {
  981. "type": "default"
  982. }
  983. // #endif
  984. }
  985. }
  986. },
  987. {
  988. "path": "promoter_rank/index",
  989. "style": {
  990. "navigationBarTitleText": "推广人排行"
  991. // #ifdef MP
  992. ,
  993. "navigationBarTextStyle": "black",
  994. "navigationBarBackgroundColor": "#FFFFFF"
  995. // #endif
  996. ,
  997. "app-plus": {
  998. // #ifdef APP-PLUS
  999. "titleNView": {
  1000. "type": "default"
  1001. }
  1002. // #endif
  1003. }
  1004. }
  1005. },
  1006. {
  1007. "path": "commission_rank/index",
  1008. "style": {
  1009. "navigationBarTitleText": "佣金排行",
  1010. "navigationBarBackgroundColor": "#FFFFFF"
  1011. // #ifdef MP || APP-PLUS
  1012. ,
  1013. "navigationBarTextStyle": "black"
  1014. // #endif
  1015. ,
  1016. "app-plus": {
  1017. // #ifdef APP-PLUS
  1018. "titleNView": {
  1019. "type": "default"
  1020. }
  1021. // #endif
  1022. }
  1023. }
  1024. },
  1025. {
  1026. "path": "user_return_list/index",
  1027. "style": {
  1028. "navigationBarTitleText": "售后列表",
  1029. "app-plus": {
  1030. // #ifdef APP-PLUS
  1031. "titleNView": {
  1032. "type": "default"
  1033. }
  1034. // #endif
  1035. }
  1036. }
  1037. },
  1038. {
  1039. "path": "register/index",
  1040. "style": {
  1041. "navigationBarTitleText": "注册",
  1042. "app-plus": {
  1043. // #ifdef APP-PLUS
  1044. "titleNView": {
  1045. "type": "default"
  1046. }
  1047. // #endif
  1048. }
  1049. }
  1050. },
  1051. {
  1052. "path": "login/index",
  1053. "style": {
  1054. "navigationBarTitleText": "登录",
  1055. "app-plus": {
  1056. // #ifdef APP-PLUS
  1057. "titleNView": {
  1058. "type": "default"
  1059. }
  1060. // #endif
  1061. }
  1062. }
  1063. },
  1064. {
  1065. "path": "payment_on_behalf/index",
  1066. "style": {
  1067. "navigationBarTitleText": "好友代付",
  1068. "app-plus": {
  1069. // #ifdef APP-PLUS
  1070. "titleNView": {
  1071. "type": "default"
  1072. }
  1073. // #endif
  1074. }
  1075. }
  1076. },
  1077. {
  1078. "path": "payment_on_behalf/pay_status",
  1079. "style": {
  1080. "navigationBarTitleText": "代付成功",
  1081. "app-plus": {
  1082. // #ifdef APP-PLUS
  1083. "titleNView": {
  1084. "type": "default"
  1085. }
  1086. // #endif
  1087. }
  1088. }
  1089. },
  1090. {
  1091. "path": "staff_list/index",
  1092. "style": {
  1093. "navigationBarTitleText": "员工列表",
  1094. "navigationBarBackgroundColor": "#e93323"
  1095. // #ifdef MP
  1096. ,
  1097. "navigationBarTextStyle": "#fff"
  1098. // #endif
  1099. }
  1100. }]
  1101. },
  1102. {
  1103. "root": "pages/goods_details",
  1104. "name": "goods_details",
  1105. "pages": [
  1106. {
  1107. "path": "index",
  1108. "style": {
  1109. "navigationStyle": "custom",
  1110. "transparentTitle": "auto",
  1111. "app-plus": {
  1112. // #ifdef APP-PLUS
  1113. "titleNView": {
  1114. "padding-left": "10px",
  1115. "padding-right": "10px",
  1116. "type": "transparent",
  1117. "buttons": [ //原生标题栏按钮配置,
  1118. {
  1119. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1120. }
  1121. ]
  1122. }
  1123. // #endif
  1124. }
  1125. }
  1126. }
  1127. ]
  1128. },
  1129. {
  1130. "root": "pages/admin",
  1131. "name": "adminOrder",
  1132. "pages": [
  1133. {
  1134. "path": "custom_date/index",
  1135. "style": {
  1136. "navigationBarTitleText": "选择日期"
  1137. }
  1138. },
  1139. {
  1140. "path": "order/index",
  1141. "style": {
  1142. "navigationBarTitleText": "订单统计",
  1143. "app-plus": {
  1144. // #ifdef APP-PLUS
  1145. "titleNView": {
  1146. "type": "default"
  1147. }
  1148. // #endif
  1149. }
  1150. }
  1151. },
  1152. {
  1153. "path": "orderList/index",
  1154. "style": {
  1155. "navigationBarTitleText": "订单列表",
  1156. "app-plus": {
  1157. // #ifdef APP-PLUS
  1158. "titleNView": {
  1159. "type": "default"
  1160. }
  1161. // #endif
  1162. }
  1163. }
  1164. },
  1165. {
  1166. "path": "orderDetail/index",
  1167. "style": {
  1168. "navigationBarTitleText": "订单详情",
  1169. "app-plus": {
  1170. // #ifdef APP-PLUS
  1171. "titleNView": {
  1172. "type": "default"
  1173. }
  1174. // #endif
  1175. }
  1176. }
  1177. },
  1178. {
  1179. "path": "delivery/index",
  1180. "style": {
  1181. "navigationBarTitleText": "订单发货",
  1182. "app-plus": {
  1183. // #ifdef APP-PLUS
  1184. "titleNView": {
  1185. "type": "default"
  1186. }
  1187. // #endif
  1188. }
  1189. }
  1190. },
  1191. {
  1192. "path": "statistics/index",
  1193. "style": {
  1194. "navigationBarTitleText": "订单数据统计",
  1195. "app-plus": {
  1196. // #ifdef APP-PLUS
  1197. "titleNView": {
  1198. "type": "default"
  1199. }
  1200. // #endif
  1201. }
  1202. }
  1203. },
  1204. {
  1205. "path": "order_cancellation/index",
  1206. "style": {
  1207. "navigationBarTitleText": "订单核销",
  1208. "app-plus": {
  1209. // #ifdef APP-PLUS
  1210. "titleNView": {
  1211. "type": "default"
  1212. }
  1213. // #endif
  1214. }
  1215. }
  1216. }
  1217. ]
  1218. },
  1219. {
  1220. "root": "pages/columnGoods",
  1221. "name": "columnGoods",
  1222. "pages": [
  1223. {
  1224. "path": "HotNewGoods/index",
  1225. "style": {
  1226. "navigationBarTitleText": "精品推荐",
  1227. "app-plus": {
  1228. // #ifdef APP-PLUS
  1229. "titleNView": {
  1230. "type": "default"
  1231. }
  1232. // #endif
  1233. }
  1234. }
  1235. },
  1236. {
  1237. "path": "HotNewGoods/feedback",
  1238. "style": {
  1239. "navigationBarTitleText": "我的客服",
  1240. "navigationBarTextStyle": "white",
  1241. "navigationBarBackgroundColor": "#3A3A3A",
  1242. "app-plus": {
  1243. // #ifdef APP-PLUS
  1244. "titleNView": {
  1245. "type": "default"
  1246. }
  1247. // #endif
  1248. }
  1249. }
  1250. },
  1251. {
  1252. "path": "live_list/index",
  1253. "style": {
  1254. "navigationBarTitleText": "精彩内容"
  1255. }
  1256. }
  1257. ]
  1258. },
  1259. {
  1260. "root": "pages/points_mall",
  1261. "pages": [
  1262. {
  1263. "path": "index",
  1264. "style": {
  1265. "navigationBarTextStyle": "white",
  1266. "navigationBarBackgroundColor": "#333333",
  1267. "navigationBarTitleText": "积分商城",
  1268. "app-plus": {
  1269. // #ifdef APP-PLUS
  1270. "titleNView": {
  1271. "type": "default"
  1272. }
  1273. // #endif
  1274. }
  1275. }
  1276. },
  1277. {
  1278. "path": "integral_goods_list",
  1279. "style": {
  1280. "navigationBarTitleText": "商品列表",
  1281. // "navigationBarTextStyle": "white",
  1282. // "navigationBarBackgroundColor": "#E93323",
  1283. "app-plus": {
  1284. // #ifdef APP-PLUS
  1285. "titleNView": {
  1286. "type": "default"
  1287. }
  1288. // #endif
  1289. }
  1290. }
  1291. },
  1292. {
  1293. "path": "integral_goods_details",
  1294. "style": {
  1295. "navigationStyle": "custom",
  1296. "app-plus": {
  1297. // #ifdef APP-PLUS
  1298. "titleNView": {
  1299. "padding-left": "10px",
  1300. "padding-right": "10px",
  1301. "type": "transparent",
  1302. "buttons": [ //原生标题栏按钮配置,
  1303. {
  1304. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1305. }
  1306. ]
  1307. }
  1308. // #endif
  1309. }
  1310. }
  1311. },
  1312. {
  1313. "path": "exchange_record",
  1314. "style": {
  1315. "navigationBarTitleText": "兑换记录",
  1316. "app-plus": {
  1317. // #ifdef APP-PLUS
  1318. "titleNView": {
  1319. "type": "default"
  1320. }
  1321. // #endif
  1322. }
  1323. }
  1324. },
  1325. {
  1326. "path": "integral_order",
  1327. "style": {
  1328. "navigationBarTitleText": "积分订单",
  1329. "app-plus": {
  1330. // #ifdef APP-PLUS
  1331. "titleNView": {
  1332. "type": "default"
  1333. }
  1334. // #endif
  1335. }
  1336. }
  1337. },
  1338. {
  1339. "path": "user_address",
  1340. "style": {
  1341. "navigationBarTitleText": "选择地址",
  1342. "app-plus": {
  1343. // #ifdef APP-PLUS
  1344. "titleNView": {
  1345. "type": "default"
  1346. }
  1347. // #endif
  1348. }
  1349. }
  1350. },
  1351. {
  1352. "path": "integral_order_status",
  1353. "style": {
  1354. "navigationBarTitleText": "兑换成功",
  1355. "app-plus": {
  1356. // #ifdef APP-PLUS
  1357. "titleNView": {
  1358. "type": "default"
  1359. }
  1360. // #endif
  1361. }
  1362. }
  1363. },
  1364. {
  1365. "path": "integral_order_details",
  1366. "style": {
  1367. "navigationBarTitleText": "兑换订单详情",
  1368. "app-plus": {
  1369. // #ifdef APP-PLUS
  1370. "titleNView": {
  1371. "type": "default"
  1372. }
  1373. // #endif
  1374. }
  1375. }
  1376. },
  1377. {
  1378. "path": "logistics_details",
  1379. "style": {
  1380. "navigationBarTitleText": "兑换物流详情",
  1381. "app-plus": {
  1382. // #ifdef APP-PLUS
  1383. "titleNView": {
  1384. "type": "default"
  1385. }
  1386. // #endif
  1387. }
  1388. }
  1389. }
  1390. ]
  1391. }
  1392. ],
  1393. "tabBar": {
  1394. "color": "#282828",
  1395. "selectedColor": "#ff3366",
  1396. "borderStyle": "white",
  1397. "backgroundColor": "#ffffff",
  1398. "list": [
  1399. {
  1400. "pagePath": "pages/index/index",
  1401. "iconPath": "static/images/1-001.png",
  1402. "selectedIconPath": "static/images/1-002.png",
  1403. "text": "首页"
  1404. },
  1405. {
  1406. "pagePath": "pages/goods_cate/goods_cate",
  1407. "iconPath": "static/images/2-001.png",
  1408. "selectedIconPath": "static/images/2-002.png",
  1409. "text": "分类"
  1410. },
  1411. {
  1412. "pagePath": "pages/order_addcart/order_addcart",
  1413. "iconPath": "static/images/3-001.png",
  1414. "selectedIconPath": "static/images/3-002.png",
  1415. "text": "红包"
  1416. },
  1417. {
  1418. "pagePath": "pages/user/index",
  1419. "iconPath": "static/images/4-001.png",
  1420. "selectedIconPath": "static/images/4-002.png",
  1421. "text": "我的"
  1422. }
  1423. ]
  1424. },
  1425. "globalStyle": {
  1426. "navigationBarTextStyle": "black",
  1427. "navigationBarTitleText": "加载中",
  1428. "navigationBarBackgroundColor": "#fff",
  1429. "backgroundColor": "#F8F8F8",
  1430. "titleNView": false
  1431. },
  1432. "condition": { //模式配置,仅开发期间生效
  1433. "current": 0, //当前激活的模式(list 的索引项)
  1434. "list": [
  1435. {
  1436. "name": "", //模式名称
  1437. "path": "", //启动页面,必选
  1438. "query": "" //启动参数,在页面的onLoad函数里面得到
  1439. }
  1440. ]
  1441. }
  1442. }