pages.json 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628
  1. {
  2. "easycom": {
  3. "^uni-(.*)": "@/components/uni-$1/uni-$1.vue", // 匹配components目录内的vue文件
  4. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  5. },
  6. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. {
  8. "path": "pages/login/login", //登录页
  9. "style": {
  10. "app-plus": {
  11. "scrollIndicator": "none", //隐藏滚动条
  12. "bounce": "none", //关闭反弹效果
  13. "titleNView": false
  14. }
  15. }
  16. },
  17. {
  18. "path": "pages/login/forgotPassword", //登录页
  19. "style": {
  20. "navigationBarTitleText": "忘记密码",
  21. "app-plus": {
  22. "scrollIndicator": "none", //隐藏滚动条
  23. "bounce": "none", //关闭反弹效果
  24. "titleNView": false
  25. }
  26. }
  27. },
  28. {
  29. "path": "pages/login/bindPhoneNumber", //登录页
  30. "style": {
  31. "navigationBarTitleText": "绑定手机号",
  32. "app-plus": {
  33. "scrollIndicator": "none", //隐藏滚动条
  34. "bounce": "none", //关闭反弹效果
  35. "titleNView": false
  36. }
  37. }
  38. },
  39. {
  40. "path": "pages/login/smsCode", //登录页
  41. "style": {
  42. "navigationBarTitleText": "短信验证码",
  43. "app-plus": {
  44. "scrollIndicator": "none", //隐藏滚动条
  45. "bounce": "none", //关闭反弹效果
  46. "titleNView": false
  47. }
  48. }
  49. },
  50. {
  51. "path": "pages/index/index",
  52. "style": {
  53. "enablePullDownRefresh": false, //是否开启下拉刷新功能
  54. "navigationBarTitleText": "首页",
  55. "app-plus": {
  56. "scrollIndicator": "none", //隐藏滚动条
  57. "bounce": "none", //关闭反弹效果
  58. "titleNView": false
  59. }
  60. }
  61. },
  62. {
  63. "path": "pages/message/message",
  64. "style": {
  65. "navigationBarTitleText": "消息",
  66. "onReachBottomDistance": 100
  67. }
  68. },
  69. {
  70. "path": "pages/orders/orders",
  71. "style": {
  72. "navigationBarTitleText": "订单",
  73. "app-plus": {
  74. "scrollIndicator": "none", //隐藏滚动条
  75. "bounce": "none", //关闭反弹效果
  76. "titleNView": false
  77. }
  78. }
  79. },
  80. {
  81. "path": "pages/orders/orders1",
  82. "style": {
  83. "navigationBarTitleText": "订单",
  84. "onReachBottomDistance": 50,
  85. "app-plus": {
  86. "scrollIndicator": "none", //隐藏滚动条
  87. "bounce": "none", //关闭反弹效果
  88. "titleNView": false
  89. }
  90. }
  91. },
  92. {
  93. "path": "pages/my/my",
  94. "style": {
  95. "navigationBarTitleText": "我的",
  96. "app-plus": {
  97. "scrollIndicator": "none", //隐藏滚动条
  98. "bounce": "none", //关闭反弹效果
  99. "titleNView": false
  100. }
  101. }
  102. },
  103. {
  104. "path": "pages/quote/quoteInfo",
  105. "style": {
  106. "navigationBarTitleText": "完善报价信息",
  107. "app-plus": {
  108. "scrollIndicator": "none", //隐藏滚动条
  109. "bounce": "none", //关闭反弹效果
  110. "titleNView": false
  111. }
  112. }
  113. },
  114. {
  115. "path": "pages/quote/selectInsuranceCompany",
  116. "style": {
  117. "navigationBarTitleText": "投保车型",
  118. "app-plus": {
  119. "scrollIndicator": "none", //隐藏滚动条
  120. "bounce": "none", //关闭反弹效果
  121. "titleNView": false
  122. }
  123. }
  124. },
  125. {
  126. "path": "pages/quote/premiumCalc",
  127. "style": {
  128. "navigationBarTitleText": "保费计算",
  129. "app-plus": {
  130. "scrollIndicator": "none", //隐藏滚动条
  131. "bounce": "none", //关闭反弹效果
  132. "titleNView": false
  133. }
  134. }
  135. },
  136. {
  137. "path": "pages/quote/premiumCalc1",
  138. "style": {
  139. "navigationBarTitleText": "保费计算",
  140. "app-plus": {
  141. "scrollIndicator": "none", //隐藏滚动条
  142. "bounce": "none", //关闭反弹效果
  143. "titleNView": false
  144. }
  145. }
  146. },
  147. {
  148. "path": "pages/quote/chooseOption",
  149. "style": {
  150. "navigationBarTitleText": "选择方案"
  151. }
  152. },
  153. {
  154. "path": "pages/quote/chooseOption1",
  155. "style": {
  156. "navigationBarTitleText": "报价方案",
  157. "app-plus": {
  158. "scrollIndicator": "none", //隐藏滚动条
  159. "bounce": "none", //关闭反弹效果
  160. "titleNView": false
  161. }
  162. }
  163. },
  164. {
  165. "path": "pages/quote/selectDriving",
  166. "style": {
  167. "navigationBarTitleText": "选择驾意险",
  168. "app-plus": {
  169. "scrollIndicator": "none", //隐藏滚动条
  170. "bounce": "none", //关闭反弹效果
  171. "titleNView": false
  172. }
  173. }
  174. },
  175. {
  176. "path": "pages/quote/manualUnderwritingPage",
  177. "style": {
  178. "navigationBarTitleText": "核保转人工过渡页",
  179. "app-plus": {
  180. "scrollIndicator": "none", //隐藏滚动条
  181. "bounce": "none", //关闭反弹效果
  182. "titleNView": false
  183. }
  184. }
  185. },
  186. //权益
  187. {
  188. "path": "pages/reward/customerBenefit",
  189. "style": {
  190. "navigationBarTitleText": "客户权益",
  191. "app-plus": {
  192. "scrollIndicator": "none", //隐藏滚动条
  193. "bounce": "none", //关闭反弹效果
  194. "titleNView": false
  195. }
  196. }
  197. },
  198. {
  199. "path": "pages/reward/benefitPackage",
  200. "style": {
  201. "navigationBarTitleText": "权益套餐",
  202. "app-plus": {
  203. "scrollIndicator": "none", //隐藏滚动条
  204. "bounce": "none", //关闭反弹效果
  205. "titleNView": false
  206. }
  207. }
  208. },
  209. {
  210. "path": "pages/reward/locationFilter",
  211. "style": {
  212. "navigationBarTitleText": "位置筛选",
  213. "app-plus": {
  214. "scrollIndicator": "none", //隐藏滚动条
  215. "bounce": "none", //关闭反弹效果
  216. "titleNView": false
  217. }
  218. }
  219. },
  220. {
  221. "path": "pages/set/set",
  222. "style": {
  223. "navigationBarTitleText": "设置"
  224. }
  225. },
  226. {
  227. //账号与安全
  228. "path": "pages/set/accountSet",
  229. "style": {
  230. "navigationBarTitleText": "设置"
  231. }
  232. },
  233. {
  234. "path": "pages/set/aboutSet",
  235. "style": {
  236. "navigationBarTitleText": "关于晋掌柜"
  237. }
  238. },
  239. {
  240. "path": "pages/set/linkedAccountSet",
  241. "style": {
  242. "navigationBarTitleText": "第三方账号"
  243. }
  244. },
  245. {
  246. "path": "pages/my/userInfo",
  247. "style": {
  248. "navigationBarTitleText": "个人信息"
  249. }
  250. },
  251. {
  252. "path": "pages/my/realNameAuth",
  253. "style": {
  254. "navigationBarTitleText": "实名认证" //实名认证
  255. }
  256. },
  257. {
  258. "path": "pages/my/authStatusPage",
  259. "style": {
  260. "navigationBarTitleText": "实名认证" //认证状态页
  261. }
  262. },
  263. {
  264. "path": "pages/registr/h5Registr",
  265. "style": {
  266. "navigationBarTitleText": "邀请你加入", //h5注册页
  267. "app-plus": {
  268. "scrollIndicator": "none", //隐藏滚动条
  269. "bounce": "none", //关闭反弹效果
  270. "titleNView": false
  271. }
  272. }
  273. },
  274. {
  275. "path": "pages/registr/appPromoPage",
  276. "style": {
  277. "navigationBarTitleText": "邀请你加入" //h5宣传页
  278. }
  279. },
  280. {
  281. "path": "pages/wallet/myWallet",
  282. "style": {
  283. "navigationBarTitleText": "我的钱包"
  284. }
  285. },
  286. {
  287. "path": "pages/wallet/incomeExpenseRecord",
  288. "style": {
  289. "navigationBarTitleText": "收支记录"
  290. }
  291. },
  292. {
  293. "path": "pages/wallet/billDetails",
  294. "style": {
  295. "navigationBarTitleText": "账单详情"
  296. }
  297. },
  298. {
  299. "path": "pages/wallet/addBankCard",
  300. "style": {
  301. "navigationBarTitleText": "我的银行卡"
  302. }
  303. },
  304. {
  305. "path": "pages/wallet/bankCardDetails",
  306. "style": {
  307. "navigationBarTitleText": "银行卡详情"
  308. }
  309. },
  310. {
  311. "path": "pages/wallet/withdrawal",
  312. "style": {
  313. "navigationBarTitleText": "提现"
  314. }
  315. },
  316. {
  317. "path": "pages/my/identityInfo",
  318. "style": {
  319. "navigationBarTitleText": "身份信息" //身份信息
  320. }
  321. },
  322. {
  323. "path": "pages/my/replacePhone",
  324. "style": {
  325. "navigationBarTitleText": "更换手机号" //实名信息
  326. }
  327. },
  328. {
  329. "path": "pages/my/changePhoneNumber",
  330. "style": {
  331. "navigationBarTitleText": "更换手机号" //实名信息
  332. }
  333. },
  334. {
  335. "path": "pages/my/passwordValidation",
  336. "style": {
  337. "navigationBarTitleText": "密码校验" //实名信息
  338. }
  339. },
  340. {
  341. "path": "pages/set/resetPassword",
  342. "style": {
  343. "navigationBarTitleText": "重置密码"
  344. }
  345. },
  346. {
  347. "path": "pages/set/accountCancellation",
  348. "style": {
  349. "navigationBarTitleText": "注销账号"
  350. }
  351. },
  352. {
  353. "path": "pages/tool/distributionCenter",
  354. "style": {
  355. "navigationBarTitleText": "分销中心"
  356. }
  357. },
  358. {
  359. "path": "pages/tool/distributeTeam",
  360. "style": {
  361. "navigationBarTitleText": "分销团队"
  362. }
  363. },
  364. {
  365. "path": "pages/tool/distributorDetails",
  366. "style": {
  367. "navigationBarTitleText": "分销员详情"
  368. }
  369. },
  370. {
  371. "path": "pages/tool/distributionOrders",
  372. "style": {
  373. "navigationBarTitleText": "分销订单"
  374. }
  375. },
  376. {
  377. "path": "pages/tool/helpAndSupport",
  378. "style": {
  379. "navigationBarTitleText": "帮助与客服"
  380. }
  381. },
  382. {
  383. "path": "pages/tool/selfReport",
  384. "style": {
  385. "navigationBarTitleText": "自助报案"
  386. }
  387. },
  388. {
  389. "path": "pages/tool/invitationCode",
  390. "style": {
  391. "navigationBarTitleText": "邀请码"
  392. }
  393. },
  394. {
  395. "path": "pages/tool/poster",
  396. "style": {
  397. "navigationBarTitleText": "海报管理"
  398. }
  399. },
  400. {
  401. "path": "pages/my/idPhoto",
  402. "style": {
  403. "navigationBarTitleText": "证件照片"
  404. }
  405. },
  406. {
  407. "path": "pages/my/businessLicense",
  408. "style": {
  409. "navigationBarTitleText": "展业资格证"
  410. }
  411. },
  412. {
  413. "path": "pages/set/logoutAgreement",
  414. "style": {
  415. "navigationBarTitleText": "注销协议"
  416. }
  417. },
  418. {
  419. "path": "pages/tool/poster",
  420. "style": {
  421. "navigationBarTitleText": "注销协议"
  422. }
  423. },
  424. {
  425. "path": "pages/my/avatarCropper",
  426. "style": {
  427. "navigationBarTitleText": "裁剪",
  428. "app-plus": {
  429. "titleNView": false,
  430. "scrollIndicator": "none",
  431. "bounce": "none"
  432. }
  433. }
  434. }, {
  435. "path": "pages/quote/ePolicy",
  436. "style": {
  437. "navigationBarTitleText": "电子保单",
  438. "app-plus": {
  439. "scrollIndicator": "none", //隐藏滚动条
  440. "bounce": "none", //关闭反弹效果
  441. "titleNView": false
  442. }
  443. }
  444. },
  445. {
  446. "path": "pages/quote/quoteDetail",
  447. "style": {
  448. "navigationBarTitleText": "订单详情页",
  449. "app-plus": {
  450. "scrollIndicator": "none", //隐藏滚动条
  451. "bounce": "none", //关闭反弹效果
  452. "titleNView": false
  453. }
  454. }
  455. },
  456. {
  457. "path": "pages/quote/imageGalleryPage",
  458. "style": {
  459. "navigationBarTitleText": "影像资料",
  460. "app-plus": {
  461. "scrollIndicator": "none", //隐藏滚动条
  462. "bounce": "none", //关闭反弹效果
  463. "titleNView": false
  464. }
  465. }
  466. },
  467. {
  468. "path": "pages/quote/specialAgreementPage",
  469. "style": {
  470. "navigationBarTitleText": "特别约定",
  471. "app-plus": {
  472. "scrollIndicator": "none", //隐藏滚动条
  473. "bounce": "none", //关闭反弹效果
  474. "titleNView": false
  475. }
  476. }
  477. },
  478. {
  479. "path": "pages/quote/quotation",
  480. "style": {
  481. "navigationBarTitleText": "报价单",
  482. "app-plus": {
  483. "scrollIndicator": "none", //隐藏滚动条
  484. "bounce": "none", //关闭反弹效果
  485. "titleNView": false
  486. }
  487. }
  488. },
  489. {
  490. "path": "pages/quote/paymentCode",
  491. "style": {
  492. "navigationBarTitleText": "付款码",
  493. "app-plus": {
  494. "scrollIndicator": "none", //隐藏滚动条
  495. "bounce": "none", //关闭反弹效果
  496. "titleNView": false
  497. }
  498. }
  499. },
  500. {
  501. "path": "pages/quote/queryVehicleModel",
  502. "style": {
  503. "navigationBarTitleText": "车型列表",
  504. "app-plus": {
  505. "scrollIndicator": "none", //隐藏滚动条
  506. "bounce": "none", //关闭反弹效果
  507. "titleNView": false
  508. }
  509. }
  510. },
  511. {
  512. "path": "pages/quote/quoteRecords",
  513. "style": {
  514. "navigationBarTitleText": "报价记录",
  515. "app-plus": {
  516. "scrollIndicator": "none", //隐藏滚动条
  517. "bounce": "none", //关闭反弹效果
  518. "titleNView": false
  519. }
  520. }
  521. },
  522. {
  523. "path": "pages/quote/quoteRecordSearch",
  524. "style": {
  525. "navigationBarTitleText": "报价记录搜索页",
  526. "app-plus": {
  527. "scrollIndicator": "none", //隐藏滚动条
  528. "bounce": "none", //关闭反弹效果
  529. "titleNView": false
  530. }
  531. }
  532. },
  533. {
  534. "path": "pages/quote/quoteRecordDetail",
  535. "style": {
  536. "navigationBarTitleText": "报价记录搜索页",
  537. "app-plus": {
  538. "scrollIndicator": "none", //隐藏滚动条
  539. "bounce": "none", //关闭反弹效果
  540. "titleNView": false
  541. }
  542. }
  543. },
  544. {
  545. "path": "pages/chat/chat",
  546. "style": {
  547. "navigationBarTitleText": "掌柜在线客服",
  548. "app-plus": {
  549. "scrollIndicator": "none",
  550. "bounce": "none"
  551. }
  552. }
  553. },
  554. {
  555. "path": "pages/orders/orderSearch",
  556. "style": {
  557. "navigationBarTitleText": "订单搜索页",
  558. "app-plus": {
  559. "scrollIndicator": "none",
  560. "bounce": "none",
  561. "titleNView": false
  562. }
  563. }
  564. },
  565. {
  566. "path": "pages/lottery/index",
  567. "style": {
  568. "navigationBarTitleText": "抽奖",
  569. "app-plus": {
  570. "scrollIndicator": "none",
  571. "bounce": "none",
  572. "titleNView": false
  573. }
  574. }
  575. }
  576. ],
  577. "globalStyle": {
  578. "navigationBarTextStyle": "black",
  579. "navigationBarTitleText": "晋掌柜",
  580. "navigationBarBackgroundColor": "#fff",
  581. // "navigationStyle": "custom",
  582. "backgroundColor": "#FFFFFF",
  583. "rpxCalcMaxDeviceWidth": 0,
  584. // rpx 计算所支持的最大设备宽度,单位 px,默认值为 960
  585. "rpxCalcBaseDeviceWidth": 375,
  586. "rpxCalcIncludeWidth": 750,
  587. "pageOrientation": "portrait"
  588. },
  589. "tabBar": {
  590. "color": "#666",
  591. "selectedColor": "#333",
  592. "borderStyle": "white",
  593. "backgroundColor": "#fdfcf4",
  594. "list": [{
  595. "pagePath": "pages/index/index",
  596. "iconPath": "static/icon/tab/icon_index.png",
  597. "selectedIconPath": "/static/icon/tab/icon_index_c.png",
  598. "text": "首页"
  599. },
  600. {
  601. "pagePath": "pages/orders/orders1",
  602. "iconPath": "static/icon/tab/icon_orders.png",
  603. "selectedIconPath": "/static/icon/tab/icon_orders_c.png",
  604. "text": "订单"
  605. },
  606. {
  607. "pagePath": "pages/message/message",
  608. "iconPath": "/static/icon/tab/icon_message.png",
  609. "selectedIconPath": "/static/icon/tab/icon_message_c.png",
  610. "text": "消息"
  611. },
  612. {
  613. "pagePath": "pages/my/my",
  614. "iconPath": "static/icon/tab/icon_my.png",
  615. "selectedIconPath": "/static/icon/tab/icon_my_c.png",
  616. "text": "我的"
  617. }
  618. ]
  619. }
  620. }