pages.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335
  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": "发票管理",
  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_coupon/index",
  666. "style": {
  667. "navigationBarTitleText": "我的优惠券",
  668. "app-plus": {
  669. // #ifdef APP-PLUS
  670. "titleNView": {
  671. "type": "default"
  672. }
  673. // #endif
  674. }
  675. }
  676. },
  677. {
  678. "path": "user_spread_user/index",
  679. "style": {
  680. "navigationBarTitleText": "我的推广"
  681. // #ifdef MP
  682. ,
  683. "navigationBarTextStyle": "black",
  684. "navigationBarBackgroundColor": "#FFFFFF"
  685. // #endif
  686. ,
  687. "app-plus": {
  688. // #ifdef APP-PLUS
  689. "titleNView": {
  690. "type": "default"
  691. }
  692. // #endif
  693. }
  694. }
  695. },
  696. {
  697. "path": "user_spread_code/index",
  698. "style": {
  699. "navigationBarTitleText": "分销海报",
  700. "app-plus": {
  701. // #ifdef APP-PLUS
  702. "titleNView": {
  703. "type": "default"
  704. }
  705. // #endif
  706. }
  707. }
  708. },
  709. {
  710. "path": "user_spread_money/index",
  711. "style": {
  712. "navigationBarTitleText": "佣金记录"
  713. // #ifdef MP
  714. ,
  715. "navigationBarTextStyle": "black",
  716. "navigationBarBackgroundColor": "#FFFFFF"
  717. // #endif
  718. ,
  719. "app-plus": {
  720. // #ifdef APP-PLUS
  721. "titleNView": {
  722. "type": "default"
  723. }
  724. // #endif
  725. }
  726. }
  727. },
  728. {
  729. "path": "user_cash/index",
  730. "style": {
  731. "navigationBarTitleText": "提现",
  732. "navigationBarBackgroundColor": "#FFFFFF"
  733. // #ifdef MP || APP-PLUS
  734. ,
  735. "navigationBarTextStyle": "black"
  736. // #endif
  737. ,
  738. "app-plus": {
  739. // #ifdef APP-PLUS
  740. "titleNView": {
  741. "type": "default"
  742. }
  743. // #endif
  744. }
  745. }
  746. },
  747. {
  748. "path": "user_distribution_level/index",
  749. "style": {
  750. "navigationBarTitleText": "分销等级",
  751. "navigationBarBackgroundColor": "#232323"
  752. // #ifdef MP || APP-PLUS
  753. ,
  754. "navigationBarTextStyle": "white"
  755. // #endif
  756. ,
  757. "app-plus": {
  758. // #ifdef APP-PLUS
  759. "titleNView": {
  760. "type": "default"
  761. }
  762. // #endif
  763. }
  764. }
  765. },
  766. {
  767. "path": "user_address_list/index",
  768. "style": {
  769. "navigationBarTitleText": "地址管理",
  770. "app-plus": {
  771. // #ifdef APP-PLUS
  772. "titleNView": {
  773. "type": "default"
  774. }
  775. // #endif
  776. }
  777. }
  778. },
  779. {
  780. "path": "user_address/index",
  781. "style": {
  782. "navigationBarTitleText": "添加地址",
  783. "app-plus": {
  784. // #ifdef APP-PLUS
  785. "titleNView": {
  786. "type": "default"
  787. }
  788. // #endif
  789. }
  790. }
  791. },
  792. {
  793. "path": "user_phone/index",
  794. "style": {
  795. "navigationBarTitleText": "绑定手机",
  796. // #ifdef MP
  797. // "navigationBarTextStyle": "white",
  798. // "navigationBarBackgroundColor": "#e93323"
  799. // #endif
  800. "app-plus": {
  801. // #ifdef APP-PLUS
  802. "titleNView": {
  803. "type": "default"
  804. }
  805. // #endif
  806. }
  807. }
  808. },
  809. {
  810. "path": "user_payment/index",
  811. "style": {
  812. "navigationBarTitleText": "余额充值",
  813. "app-plus": {
  814. // #ifdef APP-PLUS
  815. "titleNView": {
  816. "type": "default"
  817. }
  818. // #endif
  819. }
  820. }
  821. },
  822. {
  823. "path": "user_pwd_edit/index",
  824. "style": {
  825. "navigationBarTitleText": "修改密码"
  826. // #ifdef MP
  827. // ,
  828. // "navigationBarTextStyle": "white"
  829. // "navigationBarBackgroundColor": "#e93323"
  830. // #endif
  831. ,
  832. "app-plus": {
  833. // #ifdef APP-PLUS
  834. "titleNView": {
  835. "type": "default"
  836. }
  837. // #endif
  838. }
  839. }
  840. },
  841. {
  842. "path": "promoter-list/index",
  843. "style": {
  844. "navigationBarTitleText": "推广人列表"
  845. // #ifdef MP
  846. ,
  847. "navigationBarBackgroundColor": "#FFFFFF",
  848. "navigationBarTextStyle": "black"
  849. // #endif
  850. ,
  851. "app-plus": {
  852. // #ifdef APP-PLUS
  853. "titleNView": {
  854. "type": "default"
  855. }
  856. // #endif
  857. }
  858. }
  859. },
  860. {
  861. "path": "promoter-order/index",
  862. "style": {
  863. "navigationBarTitleText": "推广人订单"
  864. // #ifdef MP
  865. ,
  866. "navigationBarTextStyle": "black",
  867. "navigationBarBackgroundColor": "#FFFFFF"
  868. // #endif
  869. ,
  870. "app-plus": {
  871. // #ifdef APP-PLUS
  872. "titleNView": {
  873. "type": "default"
  874. }
  875. // #endif
  876. }
  877. }
  878. },
  879. {
  880. "path": "promoter_rank/index",
  881. "style": {
  882. "navigationBarTitleText": "推广人排行"
  883. // #ifdef MP
  884. ,
  885. "navigationBarTextStyle": "black",
  886. "navigationBarBackgroundColor": "#FFFFFF"
  887. // #endif
  888. ,
  889. "app-plus": {
  890. // #ifdef APP-PLUS
  891. "titleNView": {
  892. "type": "default"
  893. }
  894. // #endif
  895. }
  896. }
  897. },
  898. {
  899. "path": "commission_rank/index",
  900. "style": {
  901. "navigationBarTitleText": "佣金排行",
  902. "navigationBarBackgroundColor": "#FFFFFF"
  903. // #ifdef MP || APP-PLUS
  904. ,
  905. "navigationBarTextStyle": "black"
  906. // #endif
  907. ,
  908. "app-plus": {
  909. // #ifdef APP-PLUS
  910. "titleNView": {
  911. "type": "default"
  912. }
  913. // #endif
  914. }
  915. }
  916. },
  917. {
  918. "path": "user_return_list/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": "register/index",
  932. "style": {
  933. "navigationBarTitleText": "注册",
  934. "app-plus": {
  935. // #ifdef APP-PLUS
  936. "titleNView": {
  937. "type": "default"
  938. }
  939. // #endif
  940. }
  941. }
  942. },
  943. {
  944. "path": "login/index",
  945. "style": {
  946. "navigationBarTitleText": "登录",
  947. "app-plus": {
  948. // #ifdef APP-PLUS
  949. "titleNView": {
  950. "type": "default"
  951. }
  952. // #endif
  953. }
  954. }
  955. },
  956. {
  957. "path": "payment_on_behalf/index",
  958. "style": {
  959. "navigationBarTitleText": "好友代付",
  960. "app-plus": {
  961. // #ifdef APP-PLUS
  962. "titleNView": {
  963. "type": "default"
  964. }
  965. // #endif
  966. }
  967. }
  968. },
  969. {
  970. "path": "payment_on_behalf/pay_status",
  971. "style": {
  972. "navigationBarTitleText": "代付成功",
  973. "app-plus": {
  974. // #ifdef APP-PLUS
  975. "titleNView": {
  976. "type": "default"
  977. }
  978. // #endif
  979. }
  980. }
  981. },
  982. {
  983. "path": "staff_list/index",
  984. "style": {
  985. "navigationBarTitleText": "员工列表",
  986. "navigationBarBackgroundColor": "#e93323"
  987. // #ifdef MP
  988. ,
  989. "navigationBarTextStyle": "#fff"
  990. // #endif
  991. }
  992. }
  993. ]
  994. },
  995. {
  996. "root": "pages/goods_details",
  997. "name": "goods_details",
  998. "pages": [
  999. {
  1000. "path": "index",
  1001. "style": {
  1002. "navigationStyle": "custom",
  1003. "transparentTitle": "auto",
  1004. "app-plus": {
  1005. // #ifdef APP-PLUS
  1006. "titleNView": {
  1007. "padding-left": "10px",
  1008. "padding-right": "10px",
  1009. "type": "transparent",
  1010. "buttons": [ //原生标题栏按钮配置,
  1011. {
  1012. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1013. }
  1014. ]
  1015. }
  1016. // #endif
  1017. }
  1018. }
  1019. }
  1020. ]
  1021. },
  1022. {
  1023. "root": "pages/admin",
  1024. "name": "adminOrder",
  1025. "pages": [
  1026. {
  1027. "path": "custom_date/index",
  1028. "style": {
  1029. "navigationBarTitleText": "选择日期"
  1030. }
  1031. },
  1032. {
  1033. "path": "order/index",
  1034. "style": {
  1035. "navigationBarTitleText": "订单统计",
  1036. "app-plus": {
  1037. // #ifdef APP-PLUS
  1038. "titleNView": {
  1039. "type": "default"
  1040. }
  1041. // #endif
  1042. }
  1043. }
  1044. },
  1045. {
  1046. "path": "orderList/index",
  1047. "style": {
  1048. "navigationBarTitleText": "订单列表",
  1049. "app-plus": {
  1050. // #ifdef APP-PLUS
  1051. "titleNView": {
  1052. "type": "default"
  1053. }
  1054. // #endif
  1055. }
  1056. }
  1057. },
  1058. {
  1059. "path": "orderDetail/index",
  1060. "style": {
  1061. "navigationBarTitleText": "订单详情",
  1062. "app-plus": {
  1063. // #ifdef APP-PLUS
  1064. "titleNView": {
  1065. "type": "default"
  1066. }
  1067. // #endif
  1068. }
  1069. }
  1070. },
  1071. {
  1072. "path": "delivery/index",
  1073. "style": {
  1074. "navigationBarTitleText": "订单发货",
  1075. "app-plus": {
  1076. // #ifdef APP-PLUS
  1077. "titleNView": {
  1078. "type": "default"
  1079. }
  1080. // #endif
  1081. }
  1082. }
  1083. },
  1084. {
  1085. "path": "statistics/index",
  1086. "style": {
  1087. "navigationBarTitleText": "订单数据统计",
  1088. "app-plus": {
  1089. // #ifdef APP-PLUS
  1090. "titleNView": {
  1091. "type": "default"
  1092. }
  1093. // #endif
  1094. }
  1095. }
  1096. },
  1097. {
  1098. "path": "order_cancellation/index",
  1099. "style": {
  1100. "navigationBarTitleText": "订单核销",
  1101. "app-plus": {
  1102. // #ifdef APP-PLUS
  1103. "titleNView": {
  1104. "type": "default"
  1105. }
  1106. // #endif
  1107. }
  1108. }
  1109. }
  1110. ]
  1111. },
  1112. {
  1113. "root": "pages/columnGoods",
  1114. "name": "columnGoods",
  1115. "pages": [
  1116. {
  1117. "path": "HotNewGoods/index",
  1118. "style": {
  1119. "navigationBarTitleText": "精品推荐",
  1120. "app-plus": {
  1121. // #ifdef APP-PLUS
  1122. "titleNView": {
  1123. "type": "default"
  1124. }
  1125. // #endif
  1126. }
  1127. }
  1128. },
  1129. {
  1130. "path": "HotNewGoods/feedback",
  1131. "style": {
  1132. "navigationBarTitleText": "我的客服",
  1133. "navigationBarTextStyle": "white",
  1134. "navigationBarBackgroundColor": "#3A3A3A",
  1135. "app-plus": {
  1136. // #ifdef APP-PLUS
  1137. "titleNView": {
  1138. "type": "default"
  1139. }
  1140. // #endif
  1141. }
  1142. }
  1143. },
  1144. {
  1145. "path": "live_list/index",
  1146. "style": {
  1147. "navigationBarTitleText": "精彩内容"
  1148. }
  1149. }
  1150. ]
  1151. },
  1152. {
  1153. "root": "pages/points_mall",
  1154. "pages": [
  1155. {
  1156. "path": "index",
  1157. "style": {
  1158. "navigationBarTextStyle": "white",
  1159. "navigationBarBackgroundColor": "#333333",
  1160. "navigationBarTitleText": "积分商城",
  1161. "app-plus": {
  1162. // #ifdef APP-PLUS
  1163. "titleNView": {
  1164. "type": "default"
  1165. }
  1166. // #endif
  1167. }
  1168. }
  1169. },
  1170. {
  1171. "path": "integral_goods_list",
  1172. "style": {
  1173. "navigationBarTitleText": "商品列表",
  1174. // "navigationBarTextStyle": "white",
  1175. // "navigationBarBackgroundColor": "#E93323",
  1176. "app-plus": {
  1177. // #ifdef APP-PLUS
  1178. "titleNView": {
  1179. "type": "default"
  1180. }
  1181. // #endif
  1182. }
  1183. }
  1184. },
  1185. {
  1186. "path": "integral_goods_details",
  1187. "style": {
  1188. "navigationStyle": "custom",
  1189. "app-plus": {
  1190. // #ifdef APP-PLUS
  1191. "titleNView": {
  1192. "padding-left": "10px",
  1193. "padding-right": "10px",
  1194. "type": "transparent",
  1195. "buttons": [ //原生标题栏按钮配置,
  1196. {
  1197. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1198. }
  1199. ]
  1200. }
  1201. // #endif
  1202. }
  1203. }
  1204. },
  1205. {
  1206. "path": "exchange_record",
  1207. "style": {
  1208. "navigationBarTitleText": "兑换记录",
  1209. "app-plus": {
  1210. // #ifdef APP-PLUS
  1211. "titleNView": {
  1212. "type": "default"
  1213. }
  1214. // #endif
  1215. }
  1216. }
  1217. },
  1218. {
  1219. "path": "integral_order",
  1220. "style": {
  1221. "navigationBarTitleText": "积分订单",
  1222. "app-plus": {
  1223. // #ifdef APP-PLUS
  1224. "titleNView": {
  1225. "type": "default"
  1226. }
  1227. // #endif
  1228. }
  1229. }
  1230. },
  1231. {
  1232. "path": "user_address",
  1233. "style": {
  1234. "navigationBarTitleText": "选择地址",
  1235. "app-plus": {
  1236. // #ifdef APP-PLUS
  1237. "titleNView": {
  1238. "type": "default"
  1239. }
  1240. // #endif
  1241. }
  1242. }
  1243. },
  1244. {
  1245. "path": "integral_order_status",
  1246. "style": {
  1247. "navigationBarTitleText": "兑换成功",
  1248. "app-plus": {
  1249. // #ifdef APP-PLUS
  1250. "titleNView": {
  1251. "type": "default"
  1252. }
  1253. // #endif
  1254. }
  1255. }
  1256. },
  1257. {
  1258. "path": "integral_order_details",
  1259. "style": {
  1260. "navigationBarTitleText": "兑换订单详情",
  1261. "app-plus": {
  1262. // #ifdef APP-PLUS
  1263. "titleNView": {
  1264. "type": "default"
  1265. }
  1266. // #endif
  1267. }
  1268. }
  1269. },
  1270. {
  1271. "path": "logistics_details",
  1272. "style": {
  1273. "navigationBarTitleText": "兑换物流详情",
  1274. "app-plus": {
  1275. // #ifdef APP-PLUS
  1276. "titleNView": {
  1277. "type": "default"
  1278. }
  1279. // #endif
  1280. }
  1281. }
  1282. }
  1283. ]
  1284. }
  1285. ],
  1286. "tabBar": {
  1287. "color": "#282828",
  1288. "selectedColor": "#ff3366",
  1289. "borderStyle": "white",
  1290. "backgroundColor": "#ffffff",
  1291. "list": [
  1292. {
  1293. "pagePath": "pages/index/index",
  1294. "iconPath": "static/images/1-001.png",
  1295. "selectedIconPath": "static/images/1-002.png",
  1296. "text": "首页"
  1297. },
  1298. {
  1299. "pagePath": "pages/goods_cate/goods_cate",
  1300. "iconPath": "static/images/2-001.png",
  1301. "selectedIconPath": "static/images/2-002.png",
  1302. "text": "分类"
  1303. },
  1304. {
  1305. "pagePath": "pages/order_addcart/order_addcart",
  1306. "iconPath": "static/images/3-001.png",
  1307. "selectedIconPath": "static/images/3-002.png",
  1308. "text": "红包"
  1309. },
  1310. {
  1311. "pagePath": "pages/user/index",
  1312. "iconPath": "static/images/4-001.png",
  1313. "selectedIconPath": "static/images/4-002.png",
  1314. "text": "我的"
  1315. }
  1316. ]
  1317. },
  1318. "globalStyle": {
  1319. "navigationBarTextStyle": "black",
  1320. "navigationBarTitleText": "加载中",
  1321. "navigationBarBackgroundColor": "#fff",
  1322. "backgroundColor": "#F8F8F8",
  1323. "titleNView": false
  1324. },
  1325. "condition": { //模式配置,仅开发期间生效
  1326. "current": 0, //当前激活的模式(list 的索引项)
  1327. "list": [
  1328. {
  1329. "name": "", //模式名称
  1330. "path": "", //启动页面,必选
  1331. "query": "" //启动参数,在页面的onLoad函数里面得到
  1332. }
  1333. ]
  1334. }
  1335. }