pages.json 26 KB

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