pages.json 32 KB

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