pages.json 26 KB

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