pages.json 25 KB

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