pages.json 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178
  1. {
  2. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  3. {
  4. "path": "pages/index/index",
  5. "style": {
  6. "navigationBarTitleText": "首页",
  7. "navigationStyle": "custom",
  8. // #ifdef APP-PLUS
  9. "enablePullDownRefresh": true,
  10. // #endif
  11. "app-plus": {
  12. "scrollIndicator": false //禁用原生导航栏
  13. }
  14. }
  15. },
  16. {
  17. "path": "pages/order_addcart/order_addcart",
  18. "style": {
  19. "navigationBarTitleText": "购物车"
  20. }
  21. },
  22. // {
  23. // "path": "pages/plant_grass/index",
  24. // "style": {
  25. // // "navigationStyle": "custom",
  26. // "navigationBarTitleText": "种草社区"
  27. // }
  28. // },
  29. {
  30. "path": "pages/user/index",
  31. "style": {
  32. "navigationBarTitleText": "个人中心"
  33. // "navigationStyle": "custom",
  34. }
  35. },
  36. {
  37. "path": "pages/goods_details/index",
  38. "style": {
  39. "navigationStyle": "custom"
  40. // #ifdef MP || APP-PLUS
  41. ,
  42. "navigationBarTextStyle": "#fff"
  43. // #endif
  44. }
  45. },
  46. {
  47. "path": "pages/goods_cate/goods_cate",
  48. "style": {
  49. "navigationBarTitleText": "商品分类"
  50. }
  51. },
  52. {
  53. "path": "pages/news_list/index",
  54. "style": {
  55. "navigationBarTitleText": "资讯"
  56. }
  57. },
  58. // {
  59. // "path": "pages/news_details/index",
  60. // "style": {
  61. // "navigationBarTitleText": "资讯详情"
  62. // }
  63. // },
  64. {
  65. "path": "pages/auth/index",
  66. "style": {
  67. "navigationBarTitleText": "加载中"
  68. }
  69. },
  70. {
  71. "path": "pages/order_pay_status/index",
  72. "style": {
  73. "navigationBarTitleText": "支付状态"
  74. }
  75. },
  76. {
  77. "path": "pages/error/index",
  78. "style": {
  79. "navigationBarTitleText": "网站已关闭"
  80. }
  81. },
  82. {
  83. "path": "pages/order_details/index",
  84. "style": {
  85. "navigationBarTitleText": "订单详情"
  86. }
  87. },
  88. {
  89. "path": "pages/order_details/stay",
  90. "style": {
  91. "navigationBarTitleText": "订单详情"
  92. }
  93. },
  94. {
  95. "path": "pages/order_details/delivery",
  96. "style": {
  97. "navigationBarTitleText": "配送详情"
  98. }
  99. },
  100. {
  101. "path": "pages/order_pay_back/index",
  102. "style": {
  103. "navigationBarTitleText": "支付提示"
  104. }
  105. }
  106. ],
  107. "subPackages": [{
  108. "root": "pages/users",
  109. "name": "users",
  110. "pages": [{
  111. "path": "retrievePassword/index",
  112. "style": {
  113. "navigationBarTitleText": "忘记密码"
  114. }
  115. },
  116. {
  117. "path": "user_setting/index",
  118. "style": {
  119. "navigationBarTitleText": "设置"
  120. }
  121. },
  122. //协议,关于
  123. {
  124. "path": "user_about/index",
  125. "style": {
  126. "navigationBarTitleText": ""
  127. }
  128. },
  129. {
  130. "path": "agreement_rules/index",
  131. "style": {
  132. "navigationBarTitleText": "协议规则"
  133. }
  134. },
  135. {
  136. "path": "user_info/index",
  137. "style": {
  138. "navigationBarTitleText": "个人资料"
  139. }
  140. },
  141. {
  142. "path": "user_nickname/index",
  143. "style": {
  144. "navigationBarTitleText": "昵称"
  145. }
  146. },
  147. {
  148. "path": "user_get_coupon/index",
  149. "style": {
  150. "navigationBarTitleText": "领取优惠券"
  151. }
  152. },
  153. {
  154. "path": "user_goods_collection/index",
  155. "style": {
  156. "navigationBarTitleText": "收藏商品"
  157. }
  158. },
  159. {
  160. "path": "user_sgin/index",
  161. "style": {
  162. "navigationBarTitleText": "签到"
  163. }
  164. },
  165. {
  166. "path": "user_sgin_list/index",
  167. "style": {
  168. "navigationBarTitleText": "签到记录"
  169. }
  170. },
  171. {
  172. "path": "user_money/index",
  173. "style": {
  174. "navigationBarTitleText": "我的账户"
  175. }
  176. },
  177. {
  178. "path": "user_bill/index",
  179. "style": {
  180. "navigationBarTitleText": "账单明细"
  181. }
  182. },
  183. {
  184. "path": "user_integral/index",
  185. "style": {
  186. "navigationBarTitleText": "红包米详情"
  187. }
  188. },
  189. {
  190. "path": "user_brokerage/index",
  191. "style": {
  192. "navigationBarTitleText": "分销等级"
  193. }
  194. },
  195. {
  196. "path": "user_grade/index",
  197. "style": {
  198. "navigationBarTitleText": "我的等级",
  199. "navigationBarBackgroundColor": "#282828"
  200. // #ifdef MP || APP-PLUS
  201. ,
  202. "navigationBarTextStyle": "#fff"
  203. // #endif
  204. }
  205. },
  206. {
  207. "path": "user_grade_list/index",
  208. "style": {
  209. "navigationBarTitleText": "成长值记录",
  210. "navigationBarBackgroundColor": "#282828"
  211. // #ifdef MP || APP-PLUS
  212. ,
  213. "navigationBarTextStyle": "#fff"
  214. // #endif
  215. }
  216. },
  217. {
  218. "path": "user_coupon/index",
  219. "style": {
  220. "navigationBarTitleText": "我的优惠券"
  221. }
  222. },
  223. {
  224. "path": "user_spread_user/index",
  225. "style": {
  226. "navigationBarTitleText": "我的推广"
  227. }
  228. },
  229. {
  230. "path": "user_spread_code/index",
  231. "style": {
  232. "navigationBarTitleText": "分销海报"
  233. }
  234. },
  235. {
  236. "path": "user_spread_money/index",
  237. "style": {
  238. "navigationBarTitleText": "佣金记录"
  239. }
  240. },
  241. {
  242. "path": "user_cash/index",
  243. "style": {
  244. "navigationBarTitleText": "提现"
  245. }
  246. },
  247. {
  248. "path": "user_address_list/index",
  249. "style": {
  250. "navigationBarTitleText": "地址管理"
  251. }
  252. },
  253. {
  254. "path": "user_address/index",
  255. "style": {
  256. "navigationBarTitleText": "添加地址"
  257. }
  258. },
  259. {
  260. "path": "user_phone/index",
  261. "style": {
  262. "navigationBarTitleText": "绑定手机"
  263. }
  264. },
  265. {
  266. "path": "user_modify_phone/index",
  267. "style": {
  268. "navigationBarTitleText": "修改手机号"
  269. }
  270. },
  271. {
  272. "path": "user_modify_pwd/index",
  273. "style": {
  274. "navigationBarTitleText": "修改密码"
  275. }
  276. },
  277. {
  278. "path": "user_payment/index",
  279. "style": {
  280. "navigationBarTitleText": "余额充值"
  281. }
  282. },
  283. {
  284. "path": "user_pwd_edit/index",
  285. "style": {
  286. "navigationBarTitleText": "修改密码"
  287. // #ifdef MP || APP-PLUS
  288. ,
  289. "navigationBarTextStyle": "#fff"
  290. // #endif
  291. }
  292. },
  293. {
  294. "path": "order_confirm/index",
  295. "style": {
  296. "navigationBarTitleText": "提交订单"
  297. }
  298. },
  299. {
  300. "path": "goods_details_store/index",
  301. "style": {
  302. "navigationBarTitleText": "门店列表"
  303. }
  304. },
  305. {
  306. "path": "promoter-list/index",
  307. "style": {
  308. "navigationBarTitleText": "推广人列表"
  309. }
  310. },
  311. {
  312. "path": "promoter-order/index",
  313. "style": {
  314. "navigationBarTitleText": "推广人订单"
  315. }
  316. },
  317. {
  318. "path": "promoter_rank/index",
  319. "style": {
  320. "navigationBarTitleText": "推广人排行"
  321. }
  322. },
  323. {
  324. "path": "commission_rank/index",
  325. "style": {
  326. "navigationBarTitleText": "佣金排行"
  327. }
  328. },
  329. {
  330. "path": "order_list/index",
  331. "style": {
  332. "navigationBarTitleText": "我的订单",
  333. "navigationStyle": "custom"
  334. }
  335. },
  336. {
  337. "path" : "order_list/purchaseInfo",
  338. "style" :
  339. {
  340. "navigationBarTitleText": "分销详情",
  341. "enablePullDownRefresh": false
  342. }
  343. },
  344. {
  345. "path": "order_list/search",
  346. "style": {
  347. "navigationBarTitleText": "我的订单"
  348. }
  349. },
  350. {
  351. "path": "presell_order_list/index",
  352. "style": {
  353. "navigationBarTitleText": "预售订单"
  354. }
  355. },
  356. {
  357. "path": "goods_logistics/index",
  358. "style": {
  359. "navigationBarTitleText": "物流信息"
  360. }
  361. },
  362. {
  363. "path": "user_return_list/index",
  364. "style": {
  365. "navigationBarTitleText": "退货列表"
  366. }
  367. },
  368. {
  369. "path": "goods_return/index",
  370. "style": {
  371. "navigationBarTitleText": "申请退货"
  372. }
  373. },
  374. {
  375. "path": "login/index",
  376. "style": {
  377. "navigationBarTitleText": "登录",
  378. "navigationBarBackgroundColor": "#e93323"
  379. // #ifdef MP || APP-PLUS
  380. ,
  381. "navigationBarTextStyle": "#fff"
  382. // #endif
  383. }
  384. },
  385. {
  386. "path": "goods_comment_list/index",
  387. "style": {
  388. "navigationBarTitleText": "商品评分"
  389. }
  390. },
  391. {
  392. "path": "goods_comment_con/index",
  393. "style": {
  394. "navigationBarTitleText": "商品评价"
  395. }
  396. },
  397. {
  398. "path": "feedback/index",
  399. "style": {
  400. "navigationBarTitleText": "问题反馈",
  401. "backgroundColor": "#FFFFFF"
  402. }
  403. },
  404. {
  405. "path": "feedback/list",
  406. "style": {
  407. "navigationBarTitleText": "反馈记录",
  408. "backgroundColor": "#FFFFFF"
  409. }
  410. },
  411. {
  412. "path": "feedback/detail",
  413. "style": {
  414. "navigationBarTitleText": "反馈内容",
  415. "backgroundColor": "#FFFFFF"
  416. }
  417. },
  418. {
  419. "path": "refund/index",
  420. "style": {
  421. "navigationBarTitleText": "批量退款",
  422. "backgroundColor": "#FFFFFF"
  423. }
  424. },
  425. {
  426. "path": "refund/confirm",
  427. "style": {
  428. "navigationBarTitleText": "申请退款",
  429. "backgroundColor": "#FFFFFF"
  430. }
  431. },
  432. {
  433. "path": "refund/detail",
  434. "style": {
  435. "navigationBarTitleText": "退款详情",
  436. "backgroundColor": "#FFFFFF"
  437. }
  438. },
  439. {
  440. "path": "refund/select",
  441. "style": {
  442. "navigationBarTitleText": "选择服务类型",
  443. "backgroundColor": "#FFFFFF"
  444. }
  445. },
  446. {
  447. "path": "refund/goods/index",
  448. "style": {
  449. "navigationBarTitleText": "退货退款",
  450. "backgroundColor": "#FFFFFF"
  451. }
  452. },
  453. {
  454. "path": "refund/list",
  455. "style": {
  456. "navigationBarTitleText": "退货列表",
  457. "backgroundColor": "#FFFFFF"
  458. }
  459. },
  460. {
  461. "path": "refund/logistics",
  462. "style": {
  463. "navigationBarTitleText": "物流信息",
  464. "backgroundColor": "#FFFFFF"
  465. }
  466. },
  467. {
  468. "path": "user_store_attention/index",
  469. "style": {
  470. "navigationBarTitleText": "关注店铺",
  471. "backgroundColor": "#FFFFFF"
  472. }
  473. },
  474. {
  475. "path": "browsingHistory/index",
  476. "style": {
  477. "navigationBarTitleText": "浏览记录",
  478. "backgroundColor": "#FFFFFF"
  479. }
  480. },
  481. {
  482. "path": "distributor/index",
  483. "style": {
  484. "navigationBarTitleText": "成为分销",
  485. "backgroundColor": "#FFFFFF"
  486. }
  487. },
  488. {
  489. "path": "user_invoice_list/index",
  490. "style": {
  491. "navigationBarTitleText": "发票管理"
  492. }
  493. },
  494. {
  495. "path": "user_invoice_form/index",
  496. "style": {
  497. "navigationBarTitleText": "添加新发票"
  498. }
  499. },
  500. {
  501. "path": "user_invoicing/index",
  502. "style": {
  503. "navigationBarTitleText": "开具发票"
  504. }
  505. },
  506. {
  507. "path": "user_invoice_order/index",
  508. "style": {
  509. "navigationBarTitleText": "订单详情"
  510. }
  511. }, {
  512. "path": "privacy/index",
  513. "style": {
  514. "navigationBarTitleText": "",
  515. "enablePullDownRefresh": false
  516. }
  517. }
  518. ]
  519. },
  520. {
  521. "root": "pages/store",
  522. "name": "store",
  523. "pages": [
  524. {
  525. "path": "index",
  526. "style": {
  527. "navigationStyle": "custom",
  528. "navigationBarTitleText": "店铺diy首页"
  529. // #ifdef MP
  530. ,
  531. "navigationBarTextStyle": "#FFFFFF"
  532. // #endif
  533. }
  534. },{
  535. "path": "home/index",
  536. "style": {
  537. "navigationStyle": "custom",
  538. "navigationBarTitleText": "店铺首页"
  539. // #ifdef MP
  540. ,
  541. "navigationBarTextStyle": "#FFFFFF"
  542. // #endif
  543. }
  544. },
  545. {
  546. "path": "detail/index",
  547. "style": {
  548. "navigationBarTitleText": "店铺详情"
  549. }
  550. },
  551. {
  552. "path": "list/index",
  553. "style": {
  554. "navigationBarTitleText": "商品列表"
  555. }
  556. },
  557. {
  558. "path": "settled/index",
  559. "style": {
  560. "navigationBarTitleText": "商家入驻"
  561. }
  562. }, {
  563. "path": "applicationRecord/index",
  564. "style": {
  565. "navigationBarTitleText": "申请记录"
  566. }
  567. }, {
  568. "path": "merchantDetails/index",
  569. "style": {
  570. "navigationBarTitleText": "审核通过"
  571. }
  572. },
  573. {
  574. "path": "shopStreet/index",
  575. "style": {
  576. "navigationBarTitleText": "店铺街"
  577. }
  578. },
  579. {
  580. "path": "qualifications/index",
  581. "style": {
  582. "navigationBarTitleText": "店铺资质信息"
  583. }
  584. }
  585. ]
  586. },
  587. {
  588. "root": "pages/admin",
  589. "name": "adminOrder",
  590. "pages": [{
  591. "path": "order/index",
  592. "style": {
  593. "navigationBarTitleText": "订单首页"
  594. }
  595. },
  596. {
  597. "path": "orderList/index",
  598. "style": {
  599. "navigationBarTitleText": "订单列表"
  600. }
  601. },
  602. {
  603. "path": "orderRefund/index",
  604. "style": {
  605. "navigationBarTitleText": "立即退款"
  606. }
  607. },
  608. {
  609. "path": "business/index",
  610. "style": {
  611. "navigationBarTitleText": "商家管理"
  612. }
  613. },
  614. {
  615. "path": "orderDetail/index",
  616. "style": {
  617. "navigationBarTitleText": "订单详情"
  618. }
  619. },
  620. {
  621. "path": "refundDetail/index",
  622. "style": {
  623. "navigationBarTitleText": "退款单详情"
  624. }
  625. },
  626. {
  627. "path": "delivery/index",
  628. "style": {
  629. "navigationBarTitleText": "订单发货"
  630. }
  631. },
  632. {
  633. "path": "statistics/index",
  634. "style": {
  635. "navigationBarTitleText": "订单数据统计"
  636. }
  637. },
  638. {
  639. "path": "order_cancellation/index",
  640. "style": {
  641. "navigationBarTitleText": "订单核销"
  642. }
  643. },
  644. {
  645. "path": "cancellate_result/index",
  646. "style": {
  647. "navigationBarTitleText": "核销结果"
  648. }
  649. },
  650. {
  651. "path": "goods_details/index",
  652. "style": {
  653. "navigationBarTitleText": "商品详情"
  654. }
  655. }
  656. ]
  657. },
  658. {
  659. "root": "pages/product",
  660. "name": "product",
  661. "pages": [{
  662. "path": "list/index",
  663. "style": {
  664. "navigationBarTitleText": "商品管理"
  665. }
  666. },
  667. {
  668. "path": "goodsOnSale/index",
  669. "style": {
  670. "onReachBottomDistance": 100,
  671. "navigationBarTitleText": "在售商品",
  672. "enablePullDownRefresh": false
  673. }
  674. },
  675. {
  676. "path": "soldOutGoods/index",
  677. "style": {
  678. "onReachBottomDistance": 100,
  679. "navigationBarTitleText": "售罄商品",
  680. "enablePullDownRefresh": false
  681. }
  682. },
  683. {
  684. "path": "recycleBin/index",
  685. "style": {
  686. "onReachBottomDistance": 100,
  687. "navigationBarTitleText": "回收站",
  688. "enablePullDownRefresh": false
  689. }
  690. },
  691. {
  692. "path":"storeClassification/index",
  693. "style": {
  694. "navigationBarTitleText": "店铺分类"
  695. }
  696. },
  697. {
  698. "path":"storeClassification/addStoreClass",
  699. "style": {
  700. "navigationBarTitleText": "添加店铺分类"
  701. }
  702. },
  703. {
  704. "path": "addGoods/index",
  705. "style": {
  706. "navigationBarTitleText": "添加商品"
  707. }
  708. },
  709. {
  710. "path": "addGoods/secound",
  711. "style": {
  712. "navigationBarTitleText": "添加商品"
  713. }
  714. },
  715. {
  716. "path":"addGoods/addGoodDetils",
  717. "style": {
  718. "navigationBarTitleText": "商品详情"
  719. }
  720. },
  721. {
  722. "path": "addGoods/singleSpecification",
  723. "style": {
  724. "navigationBarTitleText": "单规格"
  725. }
  726. },
  727. {
  728. "path": "addGoods/mulSpecification",
  729. "style": {
  730. "navigationBarTitleText": "多规格"
  731. }
  732. },
  733. {
  734. "path": "addGoods/specificationProperties",
  735. "style": {
  736. "navigationBarTitleText": "规格属性"
  737. }
  738. },
  739. {
  740. "path": "addGoods/freightTemplate",
  741. "style": {
  742. "navigationBarTitleText": "运费模板",
  743. "onReachBottomDistance": 100,
  744. "enablePullDownRefresh": false
  745. }
  746. },
  747. {
  748. "path": "addGoods/addFreightTemplate",
  749. "style": {
  750. "navigationBarTitleText": "新增运费模板"
  751. }
  752. },
  753. {
  754. "path": "addGoods/modifyPrice",
  755. "style": {
  756. "navigationBarTitleText": "修改价格-多规格"
  757. }
  758. }
  759. ]
  760. },
  761. {
  762. "root": "pages/plantGrass",
  763. "name": "plant_grass",
  764. "pages": [
  765. {
  766. "path": "plant_detail/index",
  767. "style": {
  768. "navigationBarTitleText": "内容详情"
  769. }
  770. },
  771. {
  772. "path": "plant_release/index",
  773. "style": {
  774. "navigationBarTitleText": "内容发布"
  775. }
  776. },
  777. {
  778. "path": "plant_show/index",
  779. "style": {
  780. "navigationBarTitleText": "种草秀"
  781. }
  782. },
  783. {
  784. "path": "plant_topic/index",
  785. "style": {
  786. "navigationBarTitleText": "话题筛选"
  787. }
  788. },
  789. {
  790. "path": "plant_search/index",
  791. "style": {
  792. "navigationBarTitleText": "搜索"
  793. }
  794. },
  795. {
  796. "path": "plant_search_list/index",
  797. "style": {
  798. "navigationBarTitleText": "搜索结果"
  799. }
  800. },
  801. {
  802. "path": "plant_featured/index",
  803. "style": {
  804. "navigationBarTitleText": "为你精选"
  805. }
  806. },
  807. {
  808. "path": "plant_user/index",
  809. "style": {
  810. "navigationBarTitleText": "个人主页"
  811. }
  812. },
  813. {
  814. "path": "plant_user_attention/index",
  815. "style": {
  816. "navigationBarTitleText": "我的关注"
  817. }
  818. },
  819. {
  820. "path": "plant_user_fans/index",
  821. "style": {
  822. "navigationBarTitleText": "我的粉丝"
  823. }
  824. }
  825. ]
  826. },
  827. {
  828. "root": "pages/columnGoods",
  829. "name": "columnGoods",
  830. "pages": [{
  831. "path": "HotNewGoods/index",
  832. "style": {
  833. "navigationBarTitleText": "精品推荐"
  834. }
  835. },
  836. {
  837. "path": "goods_list/index",
  838. "style": {
  839. "navigationBarTitleText": "商品列表"
  840. }
  841. },
  842. {
  843. "path": "goods_coupon_list/index",
  844. "style": {
  845. "navigationBarTitleText": "优惠券商品"
  846. }
  847. },
  848. {
  849. "path": "goods_search/index",
  850. "style": {
  851. "navigationBarTitleText": "搜索商品"
  852. }
  853. },
  854. {
  855. "path": "goods_search_con/index",
  856. "style": {
  857. "navigationBarTitleText": "搜索商品"
  858. }
  859. }
  860. ]
  861. ,
  862. "plugins": {
  863. // "live-player-plugin": {
  864. // "version": "1.3.2",
  865. // "provider": "wx2b03c6e691cd7370"
  866. // }
  867. }
  868. },
  869. {
  870. "root": "pages/chat",
  871. "name": "chat",
  872. "pages": [{
  873. "path": "customer_list/index",
  874. "style": {
  875. "navigationBarTitleText": "消息中心"
  876. }
  877. },
  878. {
  879. "path": "customer_list/chat",
  880. "style": {
  881. "navigationBarTitleText": "客服聊天"
  882. }
  883. },
  884. {
  885. "path": "customer_login/index",
  886. "style": {
  887. "navigationBarTitleText": "客服登录"
  888. }
  889. },
  890. {
  891. "path": "customer_info/index",
  892. "style": {
  893. "navigationBarTitleText": "客户信息"
  894. }
  895. }
  896. ]
  897. },
  898. {
  899. "root": "pages/activity",
  900. "name": "activity",
  901. "pages": [{
  902. "path": "goods_seckill/index",
  903. "style": {
  904. "navigationBarTitleText": "限时秒杀",
  905. "navigationBarBackgroundColor": "#F2F2F2"
  906. }
  907. },
  908. {
  909. "path": "goods_seckill_details/index",
  910. "style": {
  911. "navigationBarTitleText": "秒杀详情",
  912. "navigationStyle": "custom"
  913. // #ifdef MP || APP-PLUS
  914. ,
  915. "navigationBarTextStyle": "#fff"
  916. // #endif
  917. }
  918. },
  919. {
  920. "path": "liveBroadcast/index",
  921. "style": {
  922. "navigationBarTitleText": "直播列表",
  923. "navigationBarBackgroundColor": "#F2F2F2"
  924. }
  925. },
  926. {
  927. "path": "presell/index",
  928. "style": {
  929. "navigationBarTitleText": "预售列表"
  930. // #ifdef MP || APP-PLUS
  931. ,
  932. "navigationBarBackgroundColor": "#F2F2F2"
  933. // #endif
  934. }
  935. },
  936. {
  937. "path": "presell_details/index",
  938. "style": {
  939. "navigationStyle": "custom"
  940. // #ifdef MP || APP-PLUS
  941. ,
  942. "navigationBarTextStyle": "#fff"
  943. // #endif
  944. }
  945. },
  946. {
  947. "path": "combination/index",
  948. "style": {
  949. "navigationBarTitleText": "拼团"
  950. // #ifdef MP || APP-PLUS
  951. ,
  952. "navigationBarBackgroundColor": "#F2F2F2"
  953. // #endif
  954. }
  955. },
  956. {
  957. "path": "combination_details/index",
  958. "style": {
  959. "navigationStyle": "custom",
  960. "navigationBarTitleText": "拼团详情",
  961. "navigationBarBackgroundColor": "#F2F2F2"
  962. }
  963. },
  964. {
  965. "path": "combination_status/index",
  966. "style": {
  967. "navigationBarTitleText": "拼团状态"
  968. }
  969. },
  970. {
  971. "path": "assist/index",
  972. "style": {
  973. "navigationBarTitleText": "助力列表",
  974. "navigationBarBackgroundColor": "#F2F2F2"
  975. }
  976. },
  977. {
  978. "path": "assist_detail/index",
  979. "style": {
  980. "navigationBarTitleText": "发起助力"
  981. }
  982. },
  983. {
  984. "path": "assist_record/index",
  985. "style": {
  986. "navigationBarTitleText": "助力记录"
  987. }
  988. },
  989. {
  990. "path": "topic/index",
  991. "style": {
  992. "navigationBarTitleText": "活动专场"
  993. }
  994. },
  995. {
  996. "path": "topic_detail/index",
  997. "style": {
  998. "navigationBarTitleText": "主题活动"
  999. }
  1000. },
  1001. {
  1002. "path": "lifeService/index",
  1003. "style": {
  1004. "navigationBarTitleText": "本地服务"
  1005. }
  1006. },
  1007. {
  1008. "path": "collect_coupons/index",
  1009. "style": {
  1010. "navigationBarTitleText": "领劵中心"
  1011. }
  1012. },
  1013. {
  1014. "path": "rank/index",
  1015. "style": {
  1016. "navigationBarTitleText": "热卖排行"
  1017. }
  1018. }
  1019. ]
  1020. },
  1021. {
  1022. "root": "pages/short_video",
  1023. "name": "shortVideo",
  1024. "pages": [{
  1025. "navigationBarTitleText": "短视频",
  1026. "enablePullDownRefresh": false,
  1027. //#ifdef APP
  1028. "path": "appSwiper/index",
  1029. //#endif
  1030. //#ifndef APP
  1031. "path": "nvueSwiper/index",
  1032. //#endif
  1033. "style": {
  1034. "navigationBarTitleText": "社区短视频",
  1035. "app-plus": {
  1036. "titleNView": false,
  1037. "bounce": "none"
  1038. }
  1039. }
  1040. }]
  1041. },
  1042. {
  1043. "root": "pages/annex",
  1044. "name": "annx",
  1045. "pages": [{
  1046. "path": "web_view/index",
  1047. "style": {
  1048. "navigationBarTitleText": "",
  1049. "app-plus": {
  1050. // #ifdef APP-PLUS
  1051. "titleNView": {
  1052. "type": "default"
  1053. }
  1054. // #endif
  1055. }
  1056. }
  1057. }, {
  1058. "path": "vip_paid/index",
  1059. "style": {
  1060. "navigationBarTitleText": "开通会员",
  1061. "app-plus": {
  1062. // #ifdef APP-PLUS
  1063. "titleNView": {
  1064. "type": "default"
  1065. }
  1066. // #endif
  1067. }
  1068. }
  1069. }, {
  1070. "path": "vip_center/index",
  1071. "style": {
  1072. "navigationBarTitleText": "会员中心",
  1073. "app-plus": {
  1074. // #ifdef APP-PLUS
  1075. "titleNView": {
  1076. "type": "default"
  1077. }
  1078. // #endif
  1079. }
  1080. }
  1081. },
  1082. {
  1083. "path": "vip_grade/index",
  1084. "style": {
  1085. "navigationBarTitleText": "会员卡",
  1086. "navigationBarTextStyle": "white",
  1087. "navigationBarBackgroundColor": "#302F35",
  1088. "app-plus": {
  1089. // #ifdef APP-PLUS
  1090. "titleNView": {
  1091. "type": "default"
  1092. }
  1093. // #endif
  1094. }
  1095. }
  1096. },
  1097. {
  1098. "path": "vip_clause/index",
  1099. "style": {
  1100. "navigationBarTitleText": "会员协议",
  1101. "app-plus": {
  1102. // #ifdef APP-PLUS
  1103. "titleNView": {
  1104. "type": "default"
  1105. }
  1106. // #endif
  1107. }
  1108. }
  1109. }
  1110. ]
  1111. }
  1112. ],
  1113. "globalStyle": {
  1114. "navigationBarTextStyle": "black",
  1115. "navigationBarTitleText": "加载中...",
  1116. "navigationBarBackgroundColor": "#fff",
  1117. "backgroundColor": "#F8F8F8"
  1118. //#ifndef H5
  1119. ,
  1120. "titleNView": true
  1121. //#endif
  1122. //#ifdef H5
  1123. ,
  1124. "titleNView": false
  1125. //#endif
  1126. },
  1127. "tabBar": {
  1128. "color": "#282828",
  1129. "selectedColor": "#E93323",
  1130. "borderStyle": "white",
  1131. "backgroundColor": "#ffffff",
  1132. "list": [{
  1133. "pagePath": "pages/index/index",
  1134. "iconPath": "static/images/1-001.png",
  1135. "selectedIconPath": "static/images/1-002.png",
  1136. "text": "首页"
  1137. },
  1138. {
  1139. "pagePath": "pages/goods_cate/goods_cate",
  1140. "iconPath": "static/images/2-001.png",
  1141. "selectedIconPath": "static/images/2-002.png",
  1142. "text": "分类"
  1143. },
  1144. // {
  1145. // "pagePath": "pages/plant_grass/index",
  1146. // "iconPath": "static/images/5-001.png",
  1147. // "selectedIconPath": "static/images/5-002.png",
  1148. // "text": "逛逛"
  1149. // },
  1150. {
  1151. "pagePath": "pages/order_addcart/order_addcart",
  1152. "iconPath": "static/images/3-001.png",
  1153. "selectedIconPath": "static/images/3-002.png",
  1154. "text": "购物车"
  1155. },
  1156. {
  1157. "pagePath": "pages/user/index",
  1158. "iconPath": "static/images/4-001.png",
  1159. "selectedIconPath": "static/images/4-002.png",
  1160. "text": "我的"
  1161. }
  1162. ]
  1163. },
  1164. "condition": { //模式配置,仅开发期间生效
  1165. "current": 0, //当前激活的模式(list 的索引项)
  1166. "list": [{
  1167. "name": "", //模式名称
  1168. "path": "", //启动页面,必选
  1169. "query": "" //启动参数,在页面的onLoad函数里面得到
  1170. }]
  1171. },
  1172. "sitemapLocation": "sitemap.json"
  1173. }