pages.json 23 KB

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