pages.json 14 KB

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