pages.json 31 KB

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