pages.json 27 KB

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