pages.json 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641
  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": "black",
  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. ],
  62. "subPackages": [{ // 模块分包
  63. "root": "pages/extension",
  64. "name": "extension",
  65. "pages": [{
  66. "path": "customer_list/chat",
  67. "style": {
  68. "navigationBarTitleText": "对话详情",
  69. "navigationBarBackgroundColor": "#3875EA",
  70. "navigationBarTextStyle": "white",
  71. "app-plus": {
  72. // #ifdef APP-PLUS
  73. "titleNView": {
  74. "type": "default"
  75. }
  76. // #endif
  77. }
  78. }
  79. },
  80. {
  81. "path": "news_list/index",
  82. "style": {
  83. "navigationBarTitleText": "资讯",
  84. "app-plus": {
  85. // #ifdef APP-PLUS
  86. "titleNView": {
  87. "type": "default"
  88. }
  89. // #endif
  90. }
  91. }
  92. },
  93. {
  94. "path": "news_details/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. }, {
  108. "root": "pages/goods",
  109. "name": "goods",
  110. "pages": [{
  111. "path": "goods_list/index",
  112. "style": {
  113. "navigationBarTitleText": "商品列表",
  114. "app-plus": {
  115. // #ifdef APP-PLUS
  116. "titleNView": {
  117. "type": "default"
  118. }
  119. // #endif
  120. }
  121. }
  122. }, {
  123. "path": "goods_search/index",
  124. "style": {
  125. "navigationBarTitleText": "搜索商品",
  126. "app-plus": {
  127. // #ifdef APP-PLUS
  128. "titleNView": {
  129. "type": "default"
  130. }
  131. // #endif
  132. }
  133. }
  134. }, {
  135. "path": "order_pay_status/index",
  136. "style": {
  137. "navigationBarTitleText": "支付成功",
  138. "app-plus": {
  139. // #ifdef APP-PLUS
  140. "titleNView": {
  141. "type": "default"
  142. }
  143. // #endif
  144. }
  145. }
  146. }, {
  147. "path": "admin_order_detail/index",
  148. "style": {
  149. "navigationBarTitleText": "订单详情",
  150. "app-plus": {
  151. // #ifdef APP-PLUS
  152. "titleNView": {
  153. "type": "default"
  154. }
  155. // #endif
  156. }
  157. }
  158. }, {
  159. "path": "goods_comment_con/index",
  160. "style": {
  161. "navigationBarTitleText": "商品评价",
  162. "app-plus": {
  163. // #ifdef APP-PLUS
  164. "titleNView": {
  165. "type": "default"
  166. }
  167. // #endif
  168. }
  169. }
  170. }, {
  171. "path": "goods_comment_con/lottery_comment",
  172. "style": {
  173. "navigationBarTitleText": "订单评价",
  174. "app-plus": {
  175. // #ifdef APP-PLUS
  176. "titleNView": {
  177. "type": "default"
  178. }
  179. // #endif
  180. }
  181. }
  182. }, {
  183. "path": "goods_comment_list/index",
  184. "style": {
  185. "navigationBarTitleText": "商品评分",
  186. "app-plus": {
  187. // #ifdef APP-PLUS
  188. "titleNView": {
  189. "type": "default"
  190. }
  191. // #endif
  192. }
  193. }
  194. }, {
  195. "path": "goods_details_store/index",
  196. "style": {
  197. "navigationBarTitleText": "门店列表",
  198. "app-plus": {
  199. // #ifdef APP-PLUS
  200. "titleNView": {
  201. "type": "default"
  202. }
  203. // #endif
  204. }
  205. }
  206. }, {
  207. "path": "goods_logistics/index",
  208. "style": {
  209. "navigationBarTitleText": "物流信息",
  210. "app-plus": {
  211. // #ifdef APP-PLUS
  212. "titleNView": {
  213. "type": "default"
  214. }
  215. // #endif
  216. }
  217. }
  218. }, {
  219. "path": "goods_return/index",
  220. "style": {
  221. "navigationBarTitleText": "申请退货",
  222. "app-plus": {
  223. // #ifdef APP-PLUS
  224. "titleNView": {
  225. "type": "default"
  226. }
  227. // #endif
  228. }
  229. }
  230. }, {
  231. "path": "goods_return_list/index",
  232. "style": {
  233. "navigationBarTitleText": "退货列表",
  234. "app-plus": {
  235. // #ifdef APP-PLUS
  236. "titleNView": {
  237. "type": "default"
  238. }
  239. // #endif
  240. }
  241. }
  242. }, {
  243. "path": "lottery/grids/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": "lottery/grids/record",
  257. "style": {
  258. "navigationBarTitleText": "中奖记录",
  259. "app-plus": {
  260. // #ifdef APP-PLUS
  261. "titleNView": {
  262. "type": "default"
  263. }
  264. // #endif
  265. }
  266. }
  267. }, {
  268. "path": "order_confirm/index",
  269. "style": {
  270. "navigationBarTitleText": "提交订单",
  271. "app-plus": {
  272. // #ifdef APP-PLUS
  273. "titleNView": {
  274. "type": "default"
  275. }
  276. // #endif
  277. }
  278. }
  279. }, {
  280. "path": "order_details/index",
  281. "style": {
  282. "navigationBarTitleText": "订单详情",
  283. "app-plus": {
  284. // #ifdef APP-PLUS
  285. "titleNView": {
  286. "type": "default"
  287. }
  288. // #endif
  289. }
  290. }
  291. }, {
  292. "path": "order_list/index",
  293. "style": {
  294. "navigationBarTitleText": "我的订单",
  295. "app-plus": {
  296. // #ifdef APP-PLUS
  297. "titleNView": {
  298. "type": "default"
  299. }
  300. // #endif
  301. }
  302. }
  303. }, {
  304. "path": "order_refund_goods/index",
  305. "style": {
  306. "navigationBarTitleText": "退回商品",
  307. "app-plus": {
  308. // #ifdef APP-PLUS
  309. "titleNView": {
  310. "type": "default"
  311. }
  312. // #endif
  313. }
  314. }
  315. },{
  316. "path": "receive_gifts_status/index",
  317. "style": {
  318. "navigationBarTitleText": "领取结果",
  319. "app-plus": {
  320. // #ifdef APP-PLUS
  321. "titleNView": {
  322. "type": "default"
  323. }
  324. // #endif
  325. }
  326. }
  327. }, {
  328. "path": "receive_gift/index",
  329. "style": {
  330. "navigationBarTitleText": "领取礼物",
  331. "navigationBarBackgroundColor": "#e93323",
  332. // #ifdef MP
  333. "navigationBarTextStyle": "#fff",
  334. // #endif
  335. "app-plus": {
  336. // #ifdef APP-PLUS
  337. "titleNView": {
  338. "type": "default"
  339. }
  340. // #endif
  341. }
  342. }
  343. },{
  344. "path": "cashier/index",
  345. "style": {
  346. "navigationBarTitleText": "收银台",
  347. "app-plus": {
  348. // #ifdef APP-PLUS
  349. "titleNView": {
  350. "type": "default"
  351. }
  352. // #endif
  353. }
  354. }
  355. }
  356. ]
  357. }, {
  358. "root": "pages/users",
  359. "name": "users",
  360. "pages": [{
  361. "path": "user_vip_areer/index",
  362. "style": {
  363. "navigationBarTitleText": "经验记录",
  364. "app-plus": {
  365. // #ifdef APP-PLUS
  366. "titleNView": {
  367. "type": "default"
  368. }
  369. // #endif
  370. }
  371. }
  372. },
  373. {
  374. "path": "privacy/index",
  375. "style": {
  376. "navigationBarTitleText": "隐私协议",
  377. "app-plus": {
  378. // #ifdef APP-PLUS
  379. "titleNView": {
  380. "type": "default"
  381. }
  382. // #endif
  383. }
  384. }
  385. },
  386. {
  387. "path": "user_cancellation/index",
  388. "style": {
  389. "navigationBarTitleText": "注销协议",
  390. "app-plus": {
  391. // #ifdef APP-PLUS
  392. "titleNView": {
  393. "type": "default"
  394. }
  395. // #endif
  396. }
  397. }
  398. },
  399. {
  400. "path": "message_center/index",
  401. "style": {
  402. "navigationBarTitleText": "消息中心",
  403. "enablePullDownRefresh": true,
  404. "app-plus": {
  405. // #ifdef APP-PLUS
  406. "titleNView": {
  407. "type": "default"
  408. }
  409. // #endif
  410. }
  411. }
  412. },
  413. {
  414. "path": "message_center/messageDetail",
  415. "style": {
  416. "navigationBarTitleText": "消息详情",
  417. "app-plus": {
  418. // #ifdef APP-PLUS
  419. "titleNView": {
  420. "type": "default"
  421. }
  422. // #endif
  423. }
  424. }
  425. },
  426. {
  427. "path": "user_invoice_order/index",
  428. "style": {
  429. "navigationBarTitleText": "发票详情",
  430. "app-plus": {
  431. // #ifdef APP-PLUS
  432. "titleNView": {
  433. "type": "default"
  434. }
  435. // #endif
  436. }
  437. }
  438. },
  439. {
  440. "path": "scan_login/index",
  441. "style": {
  442. "navigationBarTitleText": "授权登录"
  443. }
  444. },
  445. {
  446. "path": "user_invoice_list/index",
  447. "style": {
  448. "navigationBarTitleText": "发票管理",
  449. "app-plus": {
  450. // #ifdef APP-PLUS
  451. "titleNView": {
  452. "type": "default"
  453. }
  454. // #endif
  455. }
  456. }
  457. },
  458. {
  459. "path": "user_invoice_form/index",
  460. "style": {
  461. "navigationBarTitleText": "添加新发票",
  462. "app-plus": {
  463. // #ifdef APP-PLUS
  464. "titleNView": {
  465. "type": "default"
  466. }
  467. // #endif
  468. }
  469. }
  470. },
  471. //#ifdef H5
  472. {
  473. "path": "alipay_invoke/index",
  474. "style": {
  475. "navigationBarTitleText": "支付提示"
  476. }
  477. },
  478. //#endif
  479. {
  480. "path": "wechat_login/index",
  481. "style": {
  482. "navigationBarTitleText": "",
  483. "navigationStyle": "custom",
  484. "app-plus": {
  485. "scrollIndicator": "none"
  486. }
  487. }
  488. },
  489. {
  490. "path": "binding_phone/index",
  491. "style": {
  492. "navigationBarTitleText": "",
  493. "navigationStyle": "custom",
  494. "app-plus": {
  495. "scrollIndicator": "none"
  496. }
  497. }
  498. },
  499. {
  500. "path": "retrievePassword/index",
  501. "style": {
  502. "navigationBarTitleText": "忘记密码",
  503. "app-plus": {
  504. // #ifdef APP-PLUS
  505. "titleNView": {
  506. "type": "default"
  507. }
  508. // #endif
  509. }
  510. }
  511. },
  512. {
  513. "path": "user_info/index",
  514. "style": {
  515. "navigationBarTitleText": "设置",
  516. "app-plus": {
  517. // #ifdef APP-PLUS
  518. "titleNView": {
  519. "type": "default"
  520. }
  521. // #endif
  522. }
  523. }
  524. },
  525. {
  526. "path": "user_get_coupon/index",
  527. "style": {
  528. "navigationBarTitleText": "领取优惠券",
  529. "app-plus": {
  530. // #ifdef APP-PLUS
  531. "titleNView": {
  532. "type": "default"
  533. }
  534. // #endif
  535. }
  536. }
  537. },
  538. {
  539. "path": "visit_list/index",
  540. "style": {
  541. "navigationBarTitleText": "浏览记录",
  542. "app-plus": {
  543. // #ifdef APP-PLUS
  544. "titleNView": {
  545. "type": "default"
  546. }
  547. // #endif
  548. }
  549. }
  550. },
  551. {
  552. "path": "user_goods_collection/index",
  553. "style": {
  554. "navigationBarTitleText": "收藏商品",
  555. "app-plus": {
  556. // #ifdef APP-PLUS
  557. "titleNView": {
  558. "type": "default"
  559. }
  560. // #endif
  561. }
  562. }
  563. },
  564. {
  565. "path": "user_sgin/index",
  566. "style": {
  567. "navigationBarTitleText": "签到",
  568. // #ifdef MP
  569. // "navigationBarTextStyle": "white",
  570. // "navigationBarBackgroundColor": "#e93323"
  571. // #endif
  572. "app-plus": {
  573. // #ifdef APP-PLUS
  574. "titleNView": {
  575. "type": "default"
  576. }
  577. // #endif
  578. }
  579. }
  580. },
  581. {
  582. "path": "user_sgin_list/index",
  583. "style": {
  584. "navigationBarTitleText": "签到记录",
  585. "app-plus": {
  586. // #ifdef APP-PLUS
  587. "titleNView": {
  588. "type": "default"
  589. }
  590. // #endif
  591. }
  592. }
  593. },
  594. {
  595. "path": "user_money/index",
  596. "style": {
  597. "navigationBarTitleText": "我的账户",
  598. "app-plus": {
  599. // #ifdef APP-PLUS
  600. "titleNView": {
  601. "type": "default"
  602. }
  603. // #endif
  604. }
  605. }
  606. },
  607. {
  608. "path": "user_bill/index",
  609. "style": {
  610. "navigationBarTitleText": "账单明细",
  611. "app-plus": {
  612. // #ifdef APP-PLUS
  613. "titleNView": {
  614. "type": "default"
  615. }
  616. // #endif
  617. }
  618. }
  619. },
  620. {
  621. "path": "user_integral/index",
  622. "style": {
  623. "navigationBarTitleText": "积分详情"
  624. // #ifdef MP
  625. ,
  626. "navigationBarTextStyle": "black",
  627. "navigationBarBackgroundColor": "#FFFFFF"
  628. // #endif
  629. ,
  630. "app-plus": {
  631. // #ifdef APP-PLUS
  632. "titleNView": {
  633. "type": "default"
  634. }
  635. // #endif
  636. }
  637. }
  638. },
  639. {
  640. "path": "user_coupon/index",
  641. "style": {
  642. "navigationBarTitleText": "我的优惠券",
  643. "app-plus": {
  644. // #ifdef APP-PLUS
  645. "titleNView": {
  646. "type": "default"
  647. }
  648. // #endif
  649. }
  650. }
  651. },
  652. {
  653. "path": "user_spread_user/index",
  654. "style": {
  655. "navigationBarTitleText": "我的推广"
  656. // #ifdef MP
  657. ,
  658. "navigationBarTextStyle": "black",
  659. "navigationBarBackgroundColor": "#FFFFFF"
  660. // #endif
  661. ,
  662. "app-plus": {
  663. // #ifdef APP-PLUS
  664. "titleNView": {
  665. "type": "default"
  666. }
  667. // #endif
  668. }
  669. }
  670. },
  671. {
  672. "path": "user_spread_code/index",
  673. "style": {
  674. "navigationBarTitleText": "分销海报",
  675. "app-plus": {
  676. // #ifdef APP-PLUS
  677. "titleNView": {
  678. "type": "default"
  679. }
  680. // #endif
  681. }
  682. }
  683. },
  684. {
  685. "path": "user_spread_money/index",
  686. "style": {
  687. "navigationBarTitleText": "佣金记录"
  688. // #ifdef MP
  689. ,
  690. "navigationBarTextStyle": "black",
  691. "navigationBarBackgroundColor": "#FFFFFF"
  692. // #endif
  693. ,
  694. "app-plus": {
  695. // #ifdef APP-PLUS
  696. "titleNView": {
  697. "type": "default"
  698. }
  699. // #endif
  700. }
  701. }
  702. },{
  703. "path": "user_spread_money/receiving",
  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_cash/index",
  723. "style": {
  724. "navigationBarTitleText": "提现",
  725. "navigationBarBackgroundColor": "#FFFFFF"
  726. // #ifdef MP || APP-PLUS
  727. ,
  728. "navigationBarTextStyle": "black"
  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_vip/index",
  742. "style": {
  743. "navigationBarTitleText": "我的等级",
  744. "navigationBarBackgroundColor": "#232323"
  745. // #ifdef MP || APP-PLUS
  746. ,
  747. "navigationBarTextStyle": "white"
  748. // #endif
  749. ,
  750. "app-plus": {
  751. // #ifdef APP-PLUS
  752. "titleNView": {
  753. "type": "default"
  754. }
  755. // #endif
  756. }
  757. }
  758. }, {
  759. "path": "user_distribution_level/index",
  760. "style": {
  761. "navigationBarTitleText": "分销等级",
  762. "navigationBarBackgroundColor": "#232323"
  763. // #ifdef MP || APP-PLUS
  764. ,
  765. "navigationBarTextStyle": "white"
  766. // #endif
  767. ,
  768. "app-plus": {
  769. // #ifdef APP-PLUS
  770. "titleNView": {
  771. "type": "default"
  772. }
  773. // #endif
  774. }
  775. }
  776. },
  777. {
  778. "path": "user_address_list/index",
  779. "style": {
  780. "navigationBarTitleText": "地址管理",
  781. "app-plus": {
  782. // #ifdef APP-PLUS
  783. "titleNView": {
  784. "type": "default"
  785. }
  786. // #endif
  787. }
  788. }
  789. },
  790. {
  791. "path": "user_address/index",
  792. "style": {
  793. "navigationBarTitleText": "添加地址",
  794. "app-plus": {
  795. // #ifdef APP-PLUS
  796. "titleNView": {
  797. "type": "default"
  798. }
  799. // #endif
  800. }
  801. }
  802. },
  803. {
  804. "path": "user_phone/index",
  805. "style": {
  806. "navigationBarTitleText": "绑定手机",
  807. // #ifdef MP
  808. // "navigationBarTextStyle": "white",
  809. // "navigationBarBackgroundColor": "#e93323"
  810. // #endif
  811. "app-plus": {
  812. // #ifdef APP-PLUS
  813. "titleNView": {
  814. "type": "default"
  815. }
  816. // #endif
  817. }
  818. }
  819. },
  820. {
  821. "path": "user_payment/index",
  822. "style": {
  823. "navigationBarTitleText": "余额充值",
  824. "app-plus": {
  825. // #ifdef APP-PLUS
  826. "titleNView": {
  827. "type": "default"
  828. }
  829. // #endif
  830. }
  831. }
  832. },
  833. {
  834. "path": "user_pwd_edit/index",
  835. "style": {
  836. "navigationBarTitleText": "修改密码"
  837. // #ifdef MP
  838. // ,
  839. // "navigationBarTextStyle": "white"
  840. // "navigationBarBackgroundColor": "#e93323"
  841. // #endif
  842. ,
  843. "app-plus": {
  844. // #ifdef APP-PLUS
  845. "titleNView": {
  846. "type": "default"
  847. }
  848. // #endif
  849. }
  850. }
  851. },
  852. {
  853. "path": "promoter-list/index",
  854. "style": {
  855. "navigationBarTitleText": "推广人列表"
  856. // #ifdef MP
  857. ,
  858. "navigationBarBackgroundColor": "#FFFFFF",
  859. "navigationBarTextStyle": "black"
  860. // #endif
  861. ,
  862. "app-plus": {
  863. // #ifdef APP-PLUS
  864. "titleNView": {
  865. "type": "default"
  866. }
  867. // #endif
  868. }
  869. }
  870. },
  871. {
  872. "path": "promoter-order/index",
  873. "style": {
  874. "navigationBarTitleText": "推广人订单"
  875. // #ifdef MP
  876. ,
  877. "navigationBarTextStyle": "black",
  878. "navigationBarBackgroundColor": "#FFFFFF"
  879. // #endif
  880. ,
  881. "app-plus": {
  882. // #ifdef APP-PLUS
  883. "titleNView": {
  884. "type": "default"
  885. }
  886. // #endif
  887. }
  888. }
  889. },
  890. {
  891. "path": "promoter_rank/index",
  892. "style": {
  893. "navigationBarTitleText": "推广人排行"
  894. // #ifdef MP
  895. ,
  896. "navigationBarTextStyle": "black",
  897. "navigationBarBackgroundColor": "#FFFFFF"
  898. // #endif
  899. ,
  900. "app-plus": {
  901. // #ifdef APP-PLUS
  902. "titleNView": {
  903. "type": "default"
  904. }
  905. // #endif
  906. }
  907. }
  908. },
  909. {
  910. "path": "commission_rank/index",
  911. "style": {
  912. "navigationBarTitleText": "佣金排行",
  913. "navigationBarBackgroundColor": "#FFFFFF"
  914. // #ifdef MP || APP-PLUS
  915. ,
  916. "navigationBarTextStyle": "black"
  917. // #endif
  918. ,
  919. "app-plus": {
  920. // #ifdef APP-PLUS
  921. "titleNView": {
  922. "type": "default"
  923. }
  924. // #endif
  925. }
  926. }
  927. },
  928. {
  929. "path": "user_return_list/index",
  930. "style": {
  931. "navigationBarTitleText": "退货列表",
  932. "app-plus": {
  933. // #ifdef APP-PLUS
  934. "titleNView": {
  935. "type": "default"
  936. }
  937. // #endif
  938. }
  939. }
  940. },
  941. {
  942. "path": "login/index",
  943. "style": {
  944. "navigationBarTitleText": "登录",
  945. "app-plus": {
  946. // #ifdef APP-PLUS
  947. "titleNView": {
  948. "type": "default"
  949. }
  950. // #endif
  951. }
  952. }
  953. },
  954. {
  955. "path": "payment_on_behalf/index",
  956. "style": {
  957. "navigationBarTitleText": "好友代付",
  958. "app-plus": {
  959. // #ifdef APP-PLUS
  960. "titleNView": {
  961. "type": "default"
  962. }
  963. // #endif
  964. }
  965. }
  966. }, {
  967. "path": "payment_on_behalf/pay_status",
  968. "style": {
  969. "navigationBarTitleText": "代付成功",
  970. "app-plus": {
  971. // #ifdef APP-PLUS
  972. "titleNView": {
  973. "type": "default"
  974. }
  975. // #endif
  976. }
  977. }
  978. },
  979. {
  980. "path": "staff_list/index",
  981. "style": {
  982. "navigationBarTitleText": "员工列表",
  983. "navigationBarBackgroundColor": "#e93323"
  984. // #ifdef MP
  985. ,
  986. "navigationBarTextStyle": "#fff"
  987. // #endif
  988. }
  989. }
  990. // #ifdef H5
  991. ,
  992. {
  993. "path": "auth/index",
  994. "style": {
  995. "navigationBarTitleText": ""
  996. }
  997. }
  998. // #endif
  999. ],
  1000. "plugins": {
  1001. "live-player-plugin": {
  1002. "version": "1.3.5",
  1003. "provider": "wx2b03c6e691cd7370"
  1004. }
  1005. }
  1006. },
  1007. {
  1008. "root": "pages/goods_details",
  1009. "name": "goods_details",
  1010. "pages": [{
  1011. "path": "index",
  1012. "style": {
  1013. "navigationStyle": "custom",
  1014. "transparentTitle": "auto",
  1015. "app-plus": {
  1016. // #ifdef APP-PLUS
  1017. "titleNView": {
  1018. "padding-left": "10px",
  1019. "padding-right": "10px",
  1020. "type": "transparent",
  1021. "buttons": [ //原生标题栏按钮配置,
  1022. {
  1023. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1024. }
  1025. ]
  1026. }
  1027. // #endif
  1028. }
  1029. }
  1030. }]
  1031. },
  1032. {
  1033. "root": "pages/activity",
  1034. "name": "activity",
  1035. "pages": [{
  1036. "path": "goods_bargain/index",
  1037. "style": {
  1038. // #ifdef MP
  1039. // "navigationBarTextStyle": "white",
  1040. // "navigationBarBackgroundColor": "#E93323",
  1041. "navigationBarTitleText": "砍价列表",
  1042. // #endif
  1043. "app-plus": {
  1044. // #ifdef APP-PLUS
  1045. "titleNView": {
  1046. "type": "default"
  1047. }
  1048. // #endif
  1049. }
  1050. }
  1051. },
  1052. {
  1053. "path": "goods_bargain_details/index",
  1054. "style": {
  1055. // #ifdef MP
  1056. "navigationBarTitleText": "砍价活动",
  1057. // #endif
  1058. "app-plus": {
  1059. // #ifdef APP-PLUS
  1060. "titleNView": {
  1061. "type": "default"
  1062. }
  1063. // #endif
  1064. }
  1065. }
  1066. },
  1067. {
  1068. "path": "goods_combination/index",
  1069. "style": {
  1070. // #ifdef MP
  1071. // "navigationBarTextStyle": "white",
  1072. // "navigationBarBackgroundColor": "#E93323",
  1073. "navigationBarTitleText": "拼团活动",
  1074. // #endif
  1075. "app-plus": {
  1076. // #ifdef APP-PLUS
  1077. "titleNView": {
  1078. "type": "default"
  1079. }
  1080. // #endif
  1081. }
  1082. }
  1083. },
  1084. {
  1085. "path": "goods_combination_details/index",
  1086. "style": {
  1087. "navigationStyle": "custom",
  1088. "app-plus": {
  1089. // #ifdef APP-PLUS
  1090. "titleNView": {
  1091. "padding-left": "10px",
  1092. "padding-right": "10px",
  1093. "type": "transparent",
  1094. "buttons": [ //原生标题栏按钮配置,
  1095. {
  1096. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1097. }
  1098. ]
  1099. }
  1100. // #endif
  1101. }
  1102. }
  1103. },
  1104. {
  1105. "path": "goods_combination_status/index",
  1106. "style": {
  1107. "navigationBarTitleText": "拼团",
  1108. "app-plus": {
  1109. // #ifdef APP-PLUS
  1110. "titleNView": {
  1111. "type": "default"
  1112. }
  1113. // #endif
  1114. }
  1115. }
  1116. },
  1117. {
  1118. "path": "goods_seckill/index",
  1119. "style": {
  1120. "navigationBarTitleText": "限时秒杀"
  1121. // #ifdef MP
  1122. // "navigationBarTextStyle": "white"
  1123. // "navigationBarBackgroundColor": "#e93323"
  1124. // #endif
  1125. ,
  1126. "app-plus": {
  1127. // #ifdef APP-PLUS
  1128. "titleNView": {
  1129. "type": "default"
  1130. }
  1131. // #endif
  1132. }
  1133. }
  1134. },
  1135. {
  1136. "path": "goods_seckill_details/index",
  1137. "style": {
  1138. "navigationStyle": "custom"
  1139. // #ifdef MP
  1140. ,
  1141. "navigationBarTextStyle": "white"
  1142. // #endif
  1143. ,
  1144. "app-plus": {
  1145. // #ifdef APP-PLUS
  1146. "titleNView": {
  1147. "padding-left": "10px",
  1148. "padding-right": "10px",
  1149. "type": "transparent",
  1150. "buttons": [ //原生标题栏按钮配置,
  1151. {
  1152. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1153. }
  1154. ]
  1155. }
  1156. // #endif
  1157. }
  1158. }
  1159. },
  1160. {
  1161. "path": "poster-poster/index",
  1162. "style": {
  1163. "navigationBarTitleText": "砍价海报"
  1164. // #ifdef MP
  1165. // "navigationBarTextStyle": "white"
  1166. // "navigationBarBackgroundColor": "#d22516"
  1167. // #endif
  1168. ,
  1169. "app-plus": {
  1170. // #ifdef APP-PLUS
  1171. "titleNView": {
  1172. "type": "default"
  1173. }
  1174. // #endif
  1175. }
  1176. }
  1177. },
  1178. {
  1179. "path": "bargain/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": "presell/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. },
  1206. {
  1207. "root": "pages/admin",
  1208. "name": "adminOrder",
  1209. "pages": [{
  1210. "path": "custom_date/index",
  1211. "style": {
  1212. "navigationBarTitleText": "选择日期"
  1213. }
  1214. },
  1215. {
  1216. "path": "order/index",
  1217. "style": {
  1218. "navigationBarTitleText": "订单统计",
  1219. "app-plus": {
  1220. // #ifdef APP-PLUS
  1221. "titleNView": {
  1222. "type": "default"
  1223. }
  1224. // #endif
  1225. }
  1226. }
  1227. },
  1228. {
  1229. "path": "orderList/index",
  1230. "style": {
  1231. "navigationBarTitleText": "订单列表",
  1232. "app-plus": {
  1233. // #ifdef APP-PLUS
  1234. "titleNView": {
  1235. "type": "default"
  1236. }
  1237. // #endif
  1238. }
  1239. }
  1240. },
  1241. {
  1242. "path": "orderDetail/index",
  1243. "style": {
  1244. "navigationBarTitleText": "订单详情",
  1245. "app-plus": {
  1246. // #ifdef APP-PLUS
  1247. "titleNView": {
  1248. "type": "default"
  1249. }
  1250. // #endif
  1251. }
  1252. }
  1253. },
  1254. {
  1255. "path": "delivery/index",
  1256. "style": {
  1257. "navigationBarTitleText": "订单发货",
  1258. "app-plus": {
  1259. // #ifdef APP-PLUS
  1260. "titleNView": {
  1261. "type": "default"
  1262. }
  1263. // #endif
  1264. }
  1265. }
  1266. },
  1267. {
  1268. "path": "statistics/index",
  1269. "style": {
  1270. "navigationBarTitleText": "订单数据统计",
  1271. "app-plus": {
  1272. // #ifdef APP-PLUS
  1273. "titleNView": {
  1274. "type": "default"
  1275. }
  1276. // #endif
  1277. }
  1278. }
  1279. },
  1280. {
  1281. "path": "order_cancellation/index",
  1282. "style": {
  1283. "navigationBarTitleText": "订单核销",
  1284. "app-plus": {
  1285. // #ifdef APP-PLUS
  1286. "titleNView": {
  1287. "type": "default"
  1288. }
  1289. // #endif
  1290. }
  1291. }
  1292. }
  1293. ]
  1294. },
  1295. {
  1296. "root": "pages/columnGoods",
  1297. "name": "columnGoods",
  1298. "pages": [{
  1299. "path": "HotNewGoods/index",
  1300. "style": {
  1301. "navigationBarTitleText": "精品推荐",
  1302. "app-plus": {
  1303. // #ifdef APP-PLUS
  1304. "titleNView": {
  1305. "type": "default"
  1306. }
  1307. // #endif
  1308. }
  1309. }
  1310. },
  1311. {
  1312. "path": "HotNewGoods/feedback",
  1313. "style": {
  1314. "navigationBarTitleText": "我的客服",
  1315. "navigationBarTextStyle": "white",
  1316. "navigationBarBackgroundColor": "#3A3A3A",
  1317. "app-plus": {
  1318. // #ifdef APP-PLUS
  1319. "titleNView": {
  1320. "type": "default"
  1321. }
  1322. // #endif
  1323. }
  1324. }
  1325. },
  1326. {
  1327. "path": "live_list/index",
  1328. "style": {
  1329. "navigationBarTitleText": "精彩内容"
  1330. }
  1331. }
  1332. ]
  1333. },
  1334. {
  1335. "root": "pages/annex",
  1336. "pages": [{
  1337. "path": "web_view/index",
  1338. "style": {
  1339. "navigationBarTitleText": "",
  1340. "app-plus": {
  1341. // #ifdef APP-PLUS
  1342. "titleNView": {
  1343. "type": "default"
  1344. }
  1345. // #endif
  1346. }
  1347. }
  1348. }, {
  1349. "path": "vip_paid/index",
  1350. "style": {
  1351. "navigationBarTitleText": "SVIP会员",
  1352. "app-plus": {
  1353. // #ifdef APP-PLUS
  1354. "titleNView": {
  1355. "type": "default"
  1356. }
  1357. // #endif
  1358. }
  1359. }
  1360. },
  1361. {
  1362. "path": "vip_coupon/index",
  1363. "style": {
  1364. "navigationBarTitleText": "会员优惠券",
  1365. "app-plus": {
  1366. // #ifdef APP-PLUS
  1367. "titleNView": {
  1368. "type": "default"
  1369. }
  1370. // #endif
  1371. }
  1372. }
  1373. },
  1374. {
  1375. "path": "vip_clause/index",
  1376. "style": {
  1377. "navigationBarTitleText": "会员协议",
  1378. "app-plus": {
  1379. // #ifdef APP-PLUS
  1380. "titleNView": {
  1381. "type": "default"
  1382. }
  1383. // #endif
  1384. }
  1385. }
  1386. },
  1387. {
  1388. "path": "vip_active/index",
  1389. "style": {
  1390. "navigationBarTitleText": "激活会员",
  1391. "app-plus": {
  1392. // #ifdef APP-PLUS
  1393. "titleNView": {
  1394. "type": "default"
  1395. }
  1396. // #endif
  1397. }
  1398. }
  1399. },
  1400. {
  1401. "path": "offline_pay/index",
  1402. "style": {
  1403. "navigationBarTitleText": "支付",
  1404. "app-plus": {
  1405. // #ifdef APP-PLUS
  1406. "titleNView": {
  1407. "type": "default"
  1408. }
  1409. // #endif
  1410. }
  1411. }
  1412. },
  1413. {
  1414. "path": "offline_result/index",
  1415. "style": {
  1416. "navigationBarTitleText": "支付结果",
  1417. "app-plus": {
  1418. // #ifdef APP-PLUS
  1419. "titleNView": {
  1420. "type": "default"
  1421. }
  1422. // #endif
  1423. }
  1424. }
  1425. },
  1426. {
  1427. "path": "special/index",
  1428. "style": {
  1429. "navigationBarTextStyle": "white",
  1430. "navigationBarBackgroundColor": "#333333",
  1431. "navigationBarTitleText": "专题页",
  1432. "app-plus": {
  1433. "scrollIndicator": "none"
  1434. }
  1435. }
  1436. },
  1437. {
  1438. "path": "settled/index",
  1439. "style": {
  1440. "navigationBarTitleText": "分销申请",
  1441. "app-plus": {
  1442. // #ifdef APP-PLUS
  1443. "titleNView": {
  1444. "type": "default"
  1445. }
  1446. // #endif
  1447. }
  1448. }
  1449. }
  1450. ]
  1451. },
  1452. {
  1453. "root": "pages/points_mall",
  1454. "pages": [{
  1455. "path": "index",
  1456. "style": {
  1457. "navigationBarTextStyle": "white",
  1458. "navigationBarBackgroundColor": "#333333",
  1459. "navigationBarTitleText": "积分商城",
  1460. "app-plus": {
  1461. // #ifdef APP-PLUS
  1462. "titleNView": {
  1463. "type": "default"
  1464. }
  1465. // #endif
  1466. }
  1467. }
  1468. },
  1469. {
  1470. "path": "integral_goods_list",
  1471. "style": {
  1472. "navigationBarTitleText": "商品列表",
  1473. // "navigationBarTextStyle": "white",
  1474. // "navigationBarBackgroundColor": "#E93323",
  1475. "app-plus": {
  1476. // #ifdef APP-PLUS
  1477. "titleNView": {
  1478. "type": "default"
  1479. }
  1480. // #endif
  1481. }
  1482. }
  1483. },
  1484. {
  1485. "path": "integral_goods_details",
  1486. "style": {
  1487. "navigationStyle": "custom",
  1488. "app-plus": {
  1489. // #ifdef APP-PLUS
  1490. "titleNView": {
  1491. "padding-left": "10px",
  1492. "padding-right": "10px",
  1493. "type": "transparent",
  1494. "buttons": [ //原生标题栏按钮配置,
  1495. {
  1496. "type": "menu" //原生标题栏增加分享按钮,点击事件可通过页面的 onNavigationBarButtonTap 函数进行监听
  1497. }
  1498. ]
  1499. }
  1500. // #endif
  1501. }
  1502. }
  1503. },
  1504. {
  1505. "path": "exchange_record",
  1506. "style": {
  1507. "navigationBarTitleText": "兑换记录",
  1508. "app-plus": {
  1509. // #ifdef APP-PLUS
  1510. "titleNView": {
  1511. "type": "default"
  1512. }
  1513. // #endif
  1514. }
  1515. }
  1516. },
  1517. {
  1518. "path": "integral_order",
  1519. "style": {
  1520. "navigationBarTitleText": "积分订单",
  1521. "app-plus": {
  1522. // #ifdef APP-PLUS
  1523. "titleNView": {
  1524. "type": "default"
  1525. }
  1526. // #endif
  1527. }
  1528. }
  1529. }, {
  1530. "path": "user_address",
  1531. "style": {
  1532. "navigationBarTitleText": "选择地址",
  1533. "app-plus": {
  1534. // #ifdef APP-PLUS
  1535. "titleNView": {
  1536. "type": "default"
  1537. }
  1538. // #endif
  1539. }
  1540. }
  1541. },
  1542. {
  1543. "path": "integral_order_status",
  1544. "style": {
  1545. "navigationBarTitleText": "兑换成功",
  1546. "app-plus": {
  1547. // #ifdef APP-PLUS
  1548. "titleNView": {
  1549. "type": "default"
  1550. }
  1551. // #endif
  1552. }
  1553. }
  1554. }, {
  1555. "path": "integral_order_details",
  1556. "style": {
  1557. "navigationBarTitleText": "兑换订单详情",
  1558. "app-plus": {
  1559. // #ifdef APP-PLUS
  1560. "titleNView": {
  1561. "type": "default"
  1562. }
  1563. // #endif
  1564. }
  1565. }
  1566. }, {
  1567. "path": "logistics_details",
  1568. "style": {
  1569. "navigationBarTitleText": "兑换物流详情",
  1570. "app-plus": {
  1571. // #ifdef APP-PLUS
  1572. "titleNView": {
  1573. "type": "default"
  1574. }
  1575. // #endif
  1576. }
  1577. }
  1578. }
  1579. ]
  1580. }
  1581. ],
  1582. "tabBar": { // 底部菜单
  1583. "color": "#282828",
  1584. "selectedColor": "#ff3366",
  1585. "borderStyle": "white",
  1586. "backgroundColor": "#ffffff",
  1587. "list": [{
  1588. "pagePath": "pages/index/index",
  1589. "iconPath": "static/images/1-001.png",
  1590. "selectedIconPath": "static/images/1-002.png",
  1591. "text": "首页"
  1592. },
  1593. {
  1594. "pagePath": "pages/goods_cate/goods_cate",
  1595. "iconPath": "static/images/2-001.png",
  1596. "selectedIconPath": "static/images/2-002.png",
  1597. "text": "分类"
  1598. },
  1599. {
  1600. "pagePath": "pages/order_addcart/order_addcart",
  1601. "iconPath": "static/images/3-001.png",
  1602. "selectedIconPath": "static/images/3-002.png",
  1603. "text": "购物车"
  1604. },
  1605. {
  1606. "pagePath": "pages/user/index",
  1607. "iconPath": "static/images/4-001.png",
  1608. "selectedIconPath": "static/images/4-002.png",
  1609. "text": "我的"
  1610. }
  1611. ]
  1612. },
  1613. "globalStyle": {
  1614. "navigationBarTextStyle": "black",
  1615. "navigationBarTitleText": "加载中",
  1616. "navigationBarBackgroundColor": "#fff",
  1617. "backgroundColor": "#F8F8F8",
  1618. "titleNView": false,
  1619. "pageOrientation": "portrait" // 全局设置为竖屏
  1620. },
  1621. "condition": { //模式配置,仅开发期间生效
  1622. "current": 0, //当前激活的模式(list 的索引项)
  1623. "list": [{
  1624. "name": "", //模式名称
  1625. "path": "", //启动页面,必选
  1626. "query": "" //启动参数,在页面的onLoad函数里面得到
  1627. }]
  1628. },
  1629. "embeddedAppIdList": ["wxef277996acc166c3"] //通联支付appid
  1630. }