pages.json 24 KB

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