pages.json 28 KB

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