pages.json 14 KB

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