pages.json 31 KB

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