pages.json 33 KB

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