pages.json 24 KB

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