pages.json 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027
  1. {
  2. "easycom": {
  3. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [{
  6. "path": "pages/login/login", //登录页
  7. "style": {
  8. "enablePullDownRefresh": false, //是否开启下拉刷新功能
  9. "app-plus": {
  10. "bounce": "none", //关闭反弹效果
  11. "scrollIndicator": "none", //隐藏滚动条
  12. "titleNView": false
  13. }
  14. }
  15. },{
  16. "path" : "pages/test",
  17. "style" :
  18. {
  19. "navigationBarTitleText" : "测试"
  20. }
  21. },
  22. {
  23. "path" : "pages/ad/index",
  24. "style" :
  25. {
  26. "navigationBarTitleText" : "任务中心"
  27. }
  28. }, {
  29. "path": "pages/login/mimi", //隐私协议
  30. "style": {
  31. "navigationBarTitleText": "隐私协议",
  32. "app-plus": {
  33. "bounce": "none", //关闭反弹效果
  34. "scrollIndicator": "none" //隐藏滚动条
  35. }
  36. }
  37. },
  38. {
  39. "path": "pages/login/minis", //隐私协议
  40. "style": {
  41. "navigationBarTitleText": "隐私协议1",
  42. "app-plus": {
  43. "bounce": "none", //关闭反弹效果
  44. "scrollIndicator": "none" //隐藏滚动条
  45. }
  46. }
  47. }, {
  48. "path": "pages/login/xieyi", //平台协议
  49. "style": {
  50. "navigationBarTitleText": "平台协议",
  51. "app-plus": {
  52. "bounce": "none", //关闭反弹效果
  53. "scrollIndicator": "none" //隐藏滚动条
  54. }
  55. }
  56. },
  57. {
  58. "path": "pages/register/xieyi", //个代注册页面平台协议
  59. "style": {
  60. "navigationBarTitleText": "个人信息授权示范性条款",
  61. "app-plus": {
  62. "bounce": "none", //关闭反弹效果
  63. "scrollIndicator": "none" //隐藏滚动条
  64. }
  65. }
  66. }, {
  67. "path": "pages/register/register", //注册
  68. "style": {
  69. "navigationBarTitleText": "出单员注册",
  70. "app-plus": {
  71. "titleNView": false,
  72. "scrollIndicator": "none", //隐藏滚动条
  73. "bounce": "none" //关闭反弹效果
  74. }
  75. }
  76. },
  77. {
  78. "path": "pages/ad/ad",
  79. "style": {
  80. "navigationStyle": "custom", // 取消本页面的导航栏
  81. "app-plus": {
  82. "titleNView": false,
  83. "scrollIndicator": "none", //隐藏滚动条
  84. "bounce": "none" //关闭反弹效果
  85. }
  86. }
  87. },
  88. {
  89. "path": "pages/index/cityIndex",
  90. "style": {
  91. "navigationStyle": "custom", // 取消本页面的导航栏
  92. "app-plus": {
  93. "titleNView": false,
  94. "scrollIndicator": "none", //隐藏滚动条
  95. "bounce": "none" //关闭反弹效果
  96. }
  97. }
  98. },
  99. {
  100. "path": "pages/register/registerSuccess",
  101. "style": {
  102. "navigationBarTitleText": "注册成功",
  103. "app-plus": {
  104. "scrollIndicator": "none", //隐藏滚动条
  105. "bounce": "none", //关闭反弹效果
  106. "titleNView": false
  107. }
  108. }
  109. }, {
  110. "path": "pages/user/infoExamine", //认证审核
  111. "style": {
  112. "navigationBarTitleText": "认证审核",
  113. "app-plus": {
  114. "scrollIndicator": "none", //隐藏滚动条
  115. "bounce": "none" //关闭反弹效果
  116. }
  117. }
  118. },
  119. {
  120. "path": "pages/wallet/preReceivedDetails",
  121. "style": {
  122. "navigationBarTitleText": "预收明细",
  123. "app-plus": {
  124. "scrollIndicator": "none",
  125. "bounce": "none"
  126. }
  127. }
  128. },
  129. {
  130. "path": "pages/wallet/transactionDetails",
  131. "style": {
  132. "navigationBarTitleText": "收支明细",
  133. "app-plus": {
  134. "scrollIndicator": "none",
  135. "bounce": "none"
  136. }
  137. }
  138. },
  139. {
  140. "path": "pages/my/my",
  141. "style": {
  142. "navigationBarTextStyle": "white",
  143. "enablePullDownRefresh": false, //开启下拉刷新
  144. "navigationStyle": "custom",
  145. "app-plus": {
  146. "titleNView": false
  147. }
  148. }
  149. }, {
  150. "path": "pages/user/userInfo",
  151. "style": {
  152. "navigationBarTitleText": "我的信息",
  153. "app-plus": {
  154. "scrollIndicator": "none", //隐藏滚动条
  155. "bounce": "none" //关闭反弹效果
  156. }
  157. }
  158. }, {
  159. "path": "pages/index/index",
  160. "style": {
  161. "enablePullDownRefresh": true, //是否开启下拉刷新功能
  162. "navigationBarTitleText": "首页",
  163. "app-plus": {
  164. "scrollIndicator": "none", //隐藏滚动条
  165. "bounce": "none", //关闭反弹效果
  166. "titleNView": false
  167. }
  168. }
  169. }, {
  170. "path": "pages/user/infoInput",
  171. "style": {
  172. "navigationBarTitleText": "信息录入",
  173. "app-plus": {
  174. "scrollIndicator": "none", //隐藏滚动条
  175. "bounce": "none" //关闭反弹效果
  176. }
  177. }
  178. }, {
  179. "path": "pages/user/certification",
  180. "style": {
  181. "navigationBarTitleText": "实名认证",
  182. "app-plus": {
  183. "scrollIndicator": "none", //隐藏滚动条
  184. "bounce": "none" //关闭反弹效果
  185. }
  186. }
  187. }, {
  188. "path": "pages/set/set",
  189. "style": {
  190. "navigationBarTitleText": "设置",
  191. "app-plus": {
  192. "scrollIndicator": "none", //隐藏滚动条
  193. "bounce": "none" //关闭反弹效果
  194. }
  195. }
  196. }, {
  197. "path": "pages/set/safe",
  198. "style": {
  199. "navigationBarTitleText": "账号管理",
  200. "app-plus": {
  201. "scrollIndicator": "none", //隐藏滚动条
  202. "bounce": "none" //关闭反弹效果
  203. }
  204. }
  205. }, {
  206. "path": "pages/set/password",
  207. "style": {
  208. "navigationBarTitleText": "设置密码",
  209. "app-plus": {
  210. "scrollIndicator": "none", //隐藏滚动条
  211. "bounce": "none" //关闭反弹效果
  212. }
  213. }
  214. }, {
  215. "path": "pages/set/mobile",
  216. "style": {
  217. "navigationBarTitleText": "修改手机号",
  218. "app-plus": {
  219. "scrollIndicator": "none", //隐藏滚动条
  220. "bounce": "none" //关闭反弹效果
  221. }
  222. }
  223. },
  224. {
  225. "path": "pages/set/question",
  226. "style": {
  227. "navigationBarTitleText": "常见问题",
  228. "app-plus": {
  229. "scrollIndicator": "none", //隐藏滚动条
  230. "bounce": "none" //关闭反弹效果
  231. }
  232. }
  233. }, {
  234. "path": "pages/set/suggest",
  235. "style": {
  236. "navigationBarTitleText": "意见反馈",
  237. "app-plus": {
  238. "scrollIndicator": "none", //隐藏滚动条
  239. "bounce": "none" //关闭反弹效果
  240. }
  241. }
  242. }, {
  243. "path": "pages/set/about",
  244. "style": {
  245. "navigationBarTitleText": "关于掌柜",
  246. "app-plus": {
  247. "scrollIndicator": "none", //隐藏滚动条
  248. "bounce": "none" //关闭反弹效果
  249. }
  250. }
  251. }, {
  252. "path": "pages/tools/poster/poster",
  253. "style": {
  254. "navigationBarTitleText": "海报管理",
  255. "app-plus": {
  256. "scrollIndicator": "none", //隐藏滚动条
  257. "bounce": "none", //关闭反弹效果
  258. "titleNView": {
  259. "buttons": [{
  260. "type": "home"
  261. }]
  262. }
  263. }
  264. }
  265. }, {
  266. "path": "pages/tools/poster/poster-detail",
  267. "style": {
  268. "navigationBarTitleText": "海报查看",
  269. "app-plus": {
  270. "scrollIndicator": "none", //隐藏滚动条
  271. "bounce": "none" //关闭反弹效果
  272. }
  273. }
  274. }, {
  275. "path": "pages/tools/messageReminder/messageReminder",
  276. "style": {
  277. "enablePullDownRefresh": true,
  278. "navigationBarTitleText": "掌柜秘书",
  279. "app-plus": {
  280. "titleNView": false,
  281. "scrollIndicator": "none", //隐藏滚动条
  282. "bounce": "none" //关闭反弹效果
  283. }
  284. }
  285. },
  286. {
  287. "path": "pages/tools/messageReminder/details",
  288. "style": {
  289. "enablePullDownRefresh": true,
  290. "onReachBottomDistance": 10,
  291. "navigationBarTitleText": "消息通知",
  292. "app-plus": {
  293. "scrollIndicator": "none", //隐藏滚动条
  294. "bounce": "none" //关闭反弹效果
  295. }
  296. }
  297. },
  298. {
  299. "path": "pages/tools/calculator/calculator",
  300. "style": {
  301. "navigationBarTitleText": "计算器",
  302. "app-plus": {
  303. "scrollIndicator": "none", //隐藏滚动条
  304. "bounce": "none" //关闭反弹效果
  305. }
  306. }
  307. }, {
  308. "path": "pages/tools/insuranceClaims/insuranceClaims",
  309. "style": {
  310. "navigationBarTitleText": "理赔小贴士",
  311. "app-plus": {
  312. "scrollIndicator": "none", //隐藏滚动条
  313. // #ifdef APP-PLUS
  314. "titleNView": {
  315. "buttons": [{
  316. "type": "share"
  317. }]
  318. },
  319. // #endif
  320. "bounce": "none" //关闭反弹效果
  321. }
  322. }
  323. }, {
  324. "path": "pages/tools/addStaff/addStaff",
  325. "style": {
  326. "navigationBarTitleText": "闪电增员",
  327. "app-plus": {
  328. "titleNView": false,
  329. "scrollIndicator": "none", //隐藏滚动条
  330. "bounce": "none" //关闭反弹效果
  331. }
  332. }
  333. },
  334. {
  335. "path": "pages/tools/addStaff/authentication1",
  336. "style": {
  337. "navigationBarTitleText": "未认证",
  338. "app-plus": {
  339. "titleNView": false,
  340. "scrollIndicator": "none", //隐藏滚动条
  341. "bounce": "none" //关闭反弹效果
  342. }
  343. }
  344. },
  345. {
  346. "path": "pages/tools/addStaff/authentication2",
  347. "style": {
  348. "navigationBarTitleText": "已认证",
  349. "app-plus": {
  350. "titleNView": false,
  351. "scrollIndicator": "none", //隐藏滚动条
  352. "bounce": "none" //关闭反弹效果
  353. }
  354. }
  355. },
  356. {
  357. "path": "pages/tools/addStaff/authentication3",
  358. "style": {
  359. "navigationBarTitleText": "认证管理",
  360. "app-plus": {
  361. "titleNView": false,
  362. "scrollIndicator": "none", //隐藏滚动条
  363. "bounce": "none" //关闭反弹效果
  364. }
  365. }
  366. },
  367. {
  368. "path": "pages/tools/addStaff/authenticationdetails",
  369. "style": {
  370. "navigationBarTitleText": "查看详情",
  371. "app-plus": {
  372. "titleNView": false,
  373. "scrollIndicator": "none", //隐藏滚动条
  374. "bounce": "none" //关闭反弹效果
  375. }
  376. }
  377. },
  378. {
  379. "path": "pages/tools/customer/customer",
  380. "style": {
  381. "navigationBarTitleText": "客户管理",
  382. "onReachBottomDistance": 50,
  383. "app-plus": {
  384. "titleNView": false,
  385. "scrollIndicator": "none",
  386. "bounce": "none"
  387. }
  388. }
  389. },
  390. {
  391. "path": "pages/tools/customer/custormerDetail",
  392. "style": {
  393. "navigationBarTitleText": "客户订单详情",
  394. "navigationBarBackgroundColor": "#0052FF",
  395. "navigationBarTextStyle": "white",
  396. "app-plus": {
  397. "scrollIndicator": "none",
  398. "bounce": "none"
  399. }
  400. }
  401. },
  402. {
  403. "path": "pages/tools/team/team",
  404. "style": {
  405. "navigationBarTitleText": "会员管理",
  406. "app-plus": {
  407. "titleNView": false,
  408. "scrollIndicator": "none",
  409. "bounce": "none"
  410. }
  411. }
  412. }, {
  413. "path": "pages/tools/team/teamMember",
  414. "style": {
  415. "navigationBarTitleText": "成员信息",
  416. "app-plus": {
  417. "scrollIndicator": "none", //隐藏滚动条
  418. "bounce": "none" //关闭反弹效果
  419. }
  420. }
  421. }, {
  422. "path": "pages/tools/addStaff/recommendCode",
  423. "style": {
  424. "navigationBarTitleText": "面对面推荐",
  425. "app-plus": {
  426. "scrollIndicator": "none", //隐藏滚动条
  427. "bounce": "none" //关闭反弹效果
  428. }
  429. }
  430. },
  431. {
  432. "path": "pages/tools/addStaff/orderissuer",
  433. "style": {
  434. "navigationBarTitleText": "添加出单员",
  435. "app-plus": {
  436. "scrollIndicator": "none", //隐藏滚动条
  437. "bounce": "none" //关闭反弹效果
  438. }
  439. }
  440. },
  441. {
  442. "path": "pages/tools/policy/policy",
  443. "style": {
  444. "navigationBarTitleText": "我的保单",
  445. "enablePullDownRefresh": false,
  446. "navigationBarBackgroundColor": "#0052FF",
  447. "navigationBarTextStyle": "white",
  448. "app-plus": {
  449. "scrollIndicator": "none",
  450. "bounce": "none"
  451. }
  452. }
  453. },
  454. {
  455. "path": "pages/tools/policy/subOrders",
  456. "style": {
  457. "navigationBarTitleText": "查看报价",
  458. "app-plus": {
  459. "scrollIndicator": "none",
  460. "bounce": "none"
  461. }
  462. }
  463. },
  464. {
  465. "path": "pages/tools/policy/quoteDetail",
  466. "style": {
  467. "navigationBarTitleText": "报价详情",
  468. "navigationBarBackgroundColor": "#0052FF",
  469. "navigationBarTextStyle": "white",
  470. "enablePullDownRefresh": false
  471. }
  472. },
  473. {
  474. "path": "pages/tools/coupon/coupon",
  475. "style": {
  476. "navigationBarTitleText": "优惠劵",
  477. "app-plus": {
  478. "scrollIndicator": "none", //隐藏滚动条
  479. "bounce": "none" //关闭反弹效果
  480. }
  481. }
  482. }, {
  483. "path": "pages/tools/achievement/achievement",
  484. "style": {
  485. "navigationBarTitleText": "我的业绩",
  486. "app-plus": {
  487. "titleNView": false,
  488. "scrollIndicator": "none",
  489. "bounce": "none"
  490. }
  491. }
  492. },
  493. {
  494. "path": "pages/user/userInfoImage",
  495. "style": {
  496. "navigationBarTitleText": "证件影像",
  497. "app-plus": {
  498. "scrollIndicator": "none",
  499. "bounce": "none"
  500. }
  501. }
  502. },
  503. {
  504. "path": "pages/wallet/wallet",
  505. "style": {
  506. "navigationBarTitleText": "我的钱包",
  507. "navigationBarTextStyle": "white",
  508. "backgroundColor": "#0052FF",
  509. "navigationBarBackgroundColor": "#0052FF",
  510. "app-plus": {
  511. "titleNView": false,
  512. "scrollIndicator": "none",
  513. "bounce": "none"
  514. }
  515. }
  516. }, {
  517. "path": "pages/wallet/bindBank",
  518. "style": {
  519. "backgroundColor": "#F8FAFE",
  520. "navigationBarBackgroundColor": "#F8FAFE",
  521. "navigationBarTitleText": "",
  522. "app-plus": {
  523. "scrollIndicator": "none",
  524. "bounce": "none"
  525. }
  526. }
  527. },
  528. {
  529. "path": "pages/wallet/bankCard",
  530. "style": {
  531. "navigationBarTitleText": "银行卡",
  532. "app-plus": {
  533. "scrollIndicator": "none",
  534. "bounce": "none"
  535. }
  536. }
  537. },
  538. {
  539. "path": "pages/wallet/withdraw",
  540. "style": {
  541. "navigationBarTitleText": "余额提现",
  542. "backgroundColor": "#F8FAFE",
  543. "navigationBarBackgroundColor": "#F8FAFE",
  544. "enablePullDownRefresh": true,
  545. "app-plus": {
  546. "scrollIndicator": "none",
  547. "bounce": "none"
  548. }
  549. }
  550. }, {
  551. "path": "pages/wallet/withdraw1",
  552. "style": {
  553. "navigationBarTitleText": "推广提现",
  554. "enablePullDownRefresh": true,
  555. "app-plus": {
  556. "scrollIndicator": "none", //隐藏滚动条
  557. "bounce": "none" //关闭反弹效果
  558. }
  559. }
  560. },
  561. {
  562. "path": "pages/wallet/billDetails1",
  563. "style": {
  564. "navigationBarTitleText": "手续金额明细",
  565. "app-plus": {
  566. "scrollIndicator": "none",
  567. "bounce": "none"
  568. }
  569. }
  570. },
  571. {
  572. "path": "pages/wallet/billDetails2",
  573. "style": {
  574. "navigationBarTitleText": "跟单金额明细",
  575. "app-plus": {
  576. "scrollIndicator": "none",
  577. "bounce": "none"
  578. }
  579. }
  580. }, {
  581. "path": "pages/wallet/billDetails3",
  582. "style": {
  583. "navigationBarTitleText": "推广金额明细",
  584. "app-plus": {
  585. "scrollIndicator": "none",
  586. "bounce": "none"
  587. }
  588. }
  589. },
  590. {
  591. "path": "pages/wallet/billInfo",
  592. "style": {
  593. "navigationBarTitleText": "账单详情",
  594. "app-plus": {
  595. "titleNView": false,
  596. "scrollIndicator": "none",
  597. "bounce": "none"
  598. }
  599. }
  600. },
  601. {
  602. "path": "pages/wallet/billInfo1",
  603. "style": {
  604. "navigationBarTitleText": "账单详情",
  605. "navigationBarBackgroundColor": "#0052FF",
  606. "navigationBarTextStyle": "white",
  607. "app-plus": {
  608. "scrollIndicator": "none",
  609. "bounce": "none"
  610. }
  611. }
  612. },
  613. {
  614. "path": "pages/user/protocol",
  615. "style": {
  616. // "navigationBarTitleText": "协议"
  617. "navigationBarTitleText": ""
  618. }
  619. },
  620. {
  621. "path": "pages/ticket/ticket",
  622. "style": {
  623. "navigationBarTitleText": "罚单缴费办理",
  624. "app-plus": {
  625. "scrollIndicator": "none", //隐藏滚动条
  626. "bounce": "none" //关闭反弹效果
  627. }
  628. }
  629. },
  630. {
  631. "path": "pages/ticket/issue",
  632. "style": {
  633. "navigationBarTitleText": "常见问题",
  634. "app-plus": {
  635. "scrollIndicator": "none", //隐藏滚动条
  636. "bounce": "none" //关闭反弹效果
  637. }
  638. }
  639. },
  640. {
  641. "path": "pages/ticket/order",
  642. "style": {
  643. "navigationBarTitleText": "我的订单",
  644. "app-plus": {
  645. "scrollIndicator": "none", //隐藏滚动条
  646. "bounce": "none" //关闭反弹效果
  647. }
  648. }
  649. },
  650. {
  651. "path": "pages/ticket/confirmorder",
  652. "style": {
  653. "navigationBarTitleText": "确认订单",
  654. "app-plus": {
  655. "scrollIndicator": "none", //隐藏滚动条
  656. "bounce": "none" //关闭反弹效果
  657. }
  658. }
  659. },
  660. {
  661. "path": "pages/caragent/confirmorder",
  662. "style": {
  663. "navigationBarTitleText": "取送车信息",
  664. "app-plus": {
  665. "scrollIndicator": "none", //隐藏滚动条
  666. "bounce": "none" //关闭反弹效果
  667. }
  668. }
  669. },
  670. {
  671. "path": "pages/caragent/index",
  672. "style": {
  673. "navigationBarTitleText": "办理年检",
  674. "app-plus": {
  675. "scrollIndicator": "none", //隐藏滚动条
  676. "bounce": "none" //关闭反弹效果
  677. }
  678. }
  679. },
  680. {
  681. "path": "pages/caragent/map",
  682. "style": {
  683. "navigationBarTitleText": "地图",
  684. "app-plus": {
  685. "scrollIndicator": "none", //隐藏滚动条
  686. "bounce": "none" //关闭反弹效果
  687. }
  688. }
  689. },
  690. {
  691. "path": "pages/caragent/addressSearch",
  692. "style": {
  693. "navigationBarTitleText": "地址检索",
  694. "app-plus": {
  695. "scrollIndicator": "none", //隐藏滚动条
  696. "bounce": "none" //关闭反弹效果
  697. }
  698. }
  699. },
  700. {
  701. "path": "pages/caragent/addcar",
  702. "style": {
  703. "navigationBarTitleText": "新增年检车辆",
  704. "app-plus": {
  705. "scrollIndicator": "none", //隐藏滚动条
  706. "bounce": "none" //关闭反弹效果
  707. }
  708. }
  709. },
  710. {
  711. "path": "pages/caragent/editcar",
  712. "style": {
  713. "navigationBarTitleText": "编辑年检信息",
  714. "app-plus": {
  715. "scrollIndicator": "none", //隐藏滚动条
  716. "bounce": "none" //关闭反弹效果
  717. }
  718. }
  719. },
  720. {
  721. "path": "pages/roadRescue/index",
  722. "style": {
  723. "navigationBarTitleText": "一键救援",
  724. "app-plus": {
  725. "scrollIndicator": "none", //隐藏滚动条
  726. "bounce": "none" //关闭反弹效果
  727. }
  728. }
  729. },
  730. {
  731. "path": "pages/roadRescue/Grounding",
  732. "style": {
  733. "navigationBarTitleText": "搭电救援",
  734. "app-plus": {
  735. "scrollIndicator": "none", //隐藏滚动条
  736. "bounce": "none" //关闭反弹效果
  737. }
  738. }
  739. },
  740. {
  741. "path": "pages/roadRescue/trailer",
  742. "style": {
  743. "navigationBarTitleText": "拖车救援",
  744. "app-plus": {
  745. "scrollIndicator": "none", //隐藏滚动条
  746. "bounce": "none" //关闭反弹效果
  747. }
  748. }
  749. },
  750. {
  751. "path": "pages/roadRescue/replacement",
  752. "style": {
  753. "navigationBarTitleText": "换胎救援",
  754. "app-plus": {
  755. "scrollIndicator": "none", //隐藏滚动条
  756. "bounce": "none" //关闭反弹效果
  757. }
  758. }
  759. },
  760. {
  761. "path": "pages/roadRescue/map",
  762. "style": {
  763. "navigationBarTitleText": "地图",
  764. "app-plus": {
  765. "scrollIndicator": "none", //隐藏滚动条
  766. "bounce": "none" //关闭反弹效果
  767. }
  768. }
  769. },
  770. {
  771. "path": "pages/realname/realname",
  772. "style": {
  773. "navigationBarTitleText": "实名认证",
  774. "enablePullDownRefresh": false
  775. }
  776. },
  777. {
  778. "path": "pages/tools/addStaff/codeDownload",
  779. "style": {
  780. "navigationBarTitleText": "扫码下载",
  781. "enablePullDownRefresh": false
  782. }
  783. },
  784. {
  785. "path": "pages/register/orderissuer",
  786. "style": {
  787. "navigationBarTitleText": "代理人注册",
  788. "enablePullDownRefresh": false,
  789. "app-plus": {
  790. "titleNView": false,
  791. "scrollIndicator": "none", //隐藏滚动条
  792. "bounce": "none" //关闭反弹效果
  793. }
  794. }
  795. },
  796. //ui升级模块
  797. {
  798. "path": "pages/carInsure/companyQuotable",
  799. "style": {
  800. "navigationBarTitleText": "可报价公司",
  801. "app-plus": {
  802. "scrollIndicator": "none", //隐藏滚动条
  803. "bounce": "none" //关闭反弹效果
  804. }
  805. }
  806. },
  807. {
  808. "path": "pages/carInsure/premiumCalc",
  809. "style": {
  810. "navigationBarTitleText": "保费计算",
  811. "app-plus": {
  812. "scrollIndicator": "none", //隐藏滚动条
  813. "bounce": "none" //关闭反弹效果
  814. }
  815. }
  816. },
  817. {
  818. "path": "pages/carInsure/entry",
  819. "style": {
  820. "navigationBarTitleText": "车险投保",
  821. "app-plus": {
  822. "scrollIndicator": "none", //隐藏滚动条
  823. "bounce": "none" //关闭反弹效果
  824. }
  825. }
  826. },
  827. {
  828. "path": "pages/carInsure/carType",
  829. "style": {
  830. "navigationBarTitleText": "选择车型",
  831. "app-plus": {
  832. "scrollIndicator": "none", //隐藏滚动条
  833. "bounce": "none" //关闭反弹效果
  834. }
  835. }
  836. },
  837. {
  838. "path": "pages/carInsure/Information",
  839. "style": {
  840. "navigationBarTextStyle": "white",
  841. "enablePullDownRefresh": false, //开启下拉刷新
  842. "navigationStyle": "custom",
  843. "app-plus": {
  844. "titleNView": false
  845. }
  846. }
  847. },
  848. {
  849. "path": "pages/carInsure/insureItems",
  850. "style": {
  851. "navigationBarTitleText": "保险配置",
  852. "app-plus": {
  853. "scrollIndicator": "none",
  854. "bounce": "none"
  855. }
  856. }
  857. },
  858. {
  859. "path": "pages/carInsure/quote",
  860. "style": {
  861. "navigationBarTitleText": "保费计算",
  862. "app-plus": {
  863. "scrollIndicator": "none",
  864. "bounce": "none",
  865. "titleNView": {
  866. "buttons": [{
  867. "type": "home"
  868. }]
  869. }
  870. }
  871. }
  872. },
  873. {
  874. "path": "pages/carInsure/quoteDetail",
  875. "style": {
  876. "navigationBarTitleText": "报价详情",
  877. "navigationBarBackgroundColor": "#0052FF",
  878. "navigationBarTextStyle": "white",
  879. "enablePullDownRefresh": false
  880. }
  881. },
  882. {
  883. "path": "pages/orders/priceComparison",
  884. "style": {
  885. "navigationBarTitleText": "报价单",
  886. "navigationBarBackgroundColor": "#CDEFF4",
  887. "navigationBarTextStyle": "black",
  888. "enablePullDownRefresh": false
  889. }
  890. },
  891. {
  892. "path": "pages/orders/orders",
  893. "style": {
  894. "navigationBarTextStyle": "white",
  895. "onReachBottomDistance": 50,
  896. "enablePullDownRefresh": true, //开启下拉刷新
  897. "navigationStyle": "custom",
  898. "app-plus": {
  899. "titleNView": false
  900. }
  901. }
  902. },
  903. {
  904. "path": "pages/orders/subOrders",
  905. "style": {
  906. "navigationBarTitleText": "查看报价",
  907. "app-plus": {
  908. "scrollIndicator": "none",
  909. "bounce": "none"
  910. }
  911. }
  912. },
  913. {
  914. "path": "pages/orders/quoteHistory",
  915. "style": {
  916. "navigationBarTitleText": "报价历史",
  917. "app-plus": {
  918. "scrollIndicator": "none",
  919. "bounce": "none"
  920. }
  921. }
  922. },
  923. {
  924. "path": "pages/orders/quotation",
  925. "style": {
  926. "navigationBarTitleText": "报价单",
  927. "navigationBarBackgroundColor": "#C6D8FE",
  928. "navigationBarTextStyle": "black",
  929. "enablePullDownRefresh": false
  930. }
  931. },
  932. {
  933. "path": "pages/orders/quotation1",
  934. "style": {
  935. "navigationBarTitleText": "报价单",
  936. "navigationBarBackgroundColor": "#fff",
  937. "navigationBarTextStyle": "black",
  938. "enablePullDownRefresh": false
  939. }
  940. },
  941. {
  942. "path": "pages/orders/paymentCode",
  943. "style": {
  944. "navigationBarTitleText": "付款码",
  945. "navigationBarBackgroundColor": "#0052FF",
  946. "navigationBarTextStyle": "white",
  947. "enablePullDownRefresh": false
  948. }
  949. },
  950. {
  951. "path": "pages/orders/paymentCode1",
  952. "style": {
  953. "navigationBarTitleText": "付款码",
  954. "app-plus": {
  955. "scrollIndicator": "none",
  956. "bounce": "none"
  957. }
  958. }
  959. }
  960. //ui升级模块
  961. ],
  962. "globalStyle": {
  963. "navigationBarTextStyle": "black",
  964. "navigationBarTitleText": "晋掌柜",
  965. "navigationBarBackgroundColor": "#FFFFFF",
  966. // "navigationStyle": "custom",
  967. "backgroundColor": "#FFFFFF",
  968. "rpxCalcMaxDeviceWidth": 0,
  969. // rpx 计算所支持的最大设备宽度,单位 px,默认值为 960
  970. "rpxCalcBaseDeviceWidth": 375,
  971. // rpx 计算使用的基准设备宽度,设备实际宽度超出 rpx 计算所支持的最大设备宽度时将按基准宽度计算,单位 px,默认值为 375
  972. "rpxCalcIncludeWidth": 750,
  973. // rpx 计算特殊处理的值,始终按实际的设备宽度计算,单位 rpx,默认值为 750
  974. "pageOrientation": "portrait"
  975. },
  976. "tabBar": {
  977. "color": "#444444",
  978. "selectedColor": "#FF80AB",
  979. "borderStyle": "black",
  980. "backgroundColor": "#ffffff",
  981. "list": [{
  982. "pagePath": "pages/index/index",
  983. "iconPath": "static/icon/tab/icon_home.png",
  984. "selectedIconPath": "static/icon/tab/icon_home_c.png",
  985. "text": "首页"
  986. },
  987. {
  988. "pagePath": "pages/orders/orders",
  989. "iconPath": "static/icon/tab/icon_xiaoxi.png",
  990. "selectedIconPath": "static/icon/tab/icon_xiaoxi_c.png",
  991. "text": "订单"
  992. },
  993. {
  994. "pagePath": "pages/my/my",
  995. "iconPath": "static/icon/tab/icon_wode.png",
  996. "selectedIconPath": "static/icon/tab/icon_wode_c.png",
  997. "text": "我的"
  998. }
  999. ]
  1000. },
  1001. "condition": { //模式配置,仅开发期间生效
  1002. "current": 0, //当前激活的模式(list 的索引项)
  1003. "list": [{
  1004. "name": "", //模式名称
  1005. "path": "", //启动页面,必选
  1006. "query": "" //启动参数,在页面的onLoad函数里面得到
  1007. }]
  1008. }
  1009. }