pages.json 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
  4. "^sk-(.*)": "@/components/skeleton-ui/components/$1.vue"
  5. },
  6. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  7. // #ifdef H5
  8. {
  9. "path": "pages/index/index",
  10. "style": {
  11. "navigationBarTitleText": "帝侍天上门",
  12. "enablePullDownRefresh": true,
  13. "navigationStyle": "custom",
  14. "app-plus": {
  15. "titleNView": false
  16. }
  17. }
  18. },
  19. // #endif
  20. // #ifndef H5
  21. {
  22. "path": "pages/index/index",
  23. "enablePullDownRefresh": true,
  24. "style": {
  25. "navigationBarTitleText": "帝侍天上门",
  26. "app-plus": {
  27. "titleNView": true
  28. }
  29. }
  30. },
  31. // #endif
  32. {
  33. "path": "pages/index/search/index",
  34. "style": {
  35. "navigationBarTitleText": "搜索",
  36. "app-plus": {
  37. "titleNView": true
  38. }
  39. }
  40. },
  41. {
  42. "path": "pages/index/order/gameList",
  43. "style": {
  44. "navigationBarTitleText": "游戏列表",
  45. "enablePullDownRefresh": true
  46. }
  47. },
  48. {
  49. "path": "pages/index/order/order",
  50. "style": {
  51. "navigationBarTitleText": "项目详情"
  52. }
  53. },
  54. {
  55. "path": "pages/index/order/orderDetail",
  56. "style": {
  57. "navigationBarTitleText": "技师详情"
  58. }
  59. },
  60. {
  61. "path": "pages/index/order/orderDet",
  62. "style": {
  63. "navigationBarTitleText": "确认订单"
  64. }
  65. },
  66. {
  67. "path": "pages/index/order/test",
  68. "style": {
  69. "navigationBarTitleText": "授权"
  70. }
  71. },
  72. {
  73. "path": "pages/index/order/lowTaking",
  74. "style": {
  75. "navigationBarTitleText": "乐享低价",
  76. "enablePullDownRefresh": true
  77. }
  78. },
  79. {
  80. "path": "pages/index/citys/citys",
  81. "style": {
  82. "navigationBarTitleText": "城市"
  83. }
  84. },
  85. {
  86. "path": "pages/index/webView",
  87. "style": {
  88. "navigationBarTitleText": "网页"
  89. }
  90. },
  91. {
  92. "path": "pages/my/erweimaRegister",
  93. "style": {
  94. "navigationBarTextStyle": "black",
  95. "navigationBarTitleText": "关注公众号",
  96. "enablePullDownRefresh": false,
  97. "app-plus": {
  98. "bounce": "none",
  99. "titleNView": false
  100. }
  101. }
  102. },
  103. {
  104. "path": "pages/msg/index",
  105. "style": {
  106. "navigationBarTitleText": "消息"
  107. }
  108. },
  109. {
  110. "path": "pages/msg/im",
  111. "style": {
  112. "navigationBarTitleText": "消息"
  113. }
  114. },
  115. {
  116. "path": "pages/msg/message",
  117. "style": {
  118. "navigationBarTitleText": "系统消息",
  119. "enablePullDownRefresh": true
  120. }
  121. },
  122. // #ifdef H5
  123. {
  124. "path": "pages/my/index",
  125. "style": {
  126. "navigationBarTitleText": "我的",
  127. "navigationBarBackgroundColor": "#05C25C",
  128. "navigationBarTextStyle": "white",
  129. "app-plus": {
  130. "titleNView": false
  131. }
  132. }
  133. },
  134. // #endif
  135. // #ifndef H5
  136. {
  137. "path": "pages/my/index",
  138. "style": {
  139. "navigationBarTitleText": "我的",
  140. "navigationBarBackgroundColor": "#05C25C",
  141. "navigationBarTextStyle": "white"
  142. }
  143. },
  144. // #endif
  145. {
  146. "path": "pages/my/myteam",
  147. "style": {
  148. "navigationBarTitleText": "我的团队",
  149. "enablePullDownRefresh": false,
  150. "app-plus": {
  151. "bounce": "none",
  152. "scrollIndicator": "none",
  153. "titleNView": true
  154. }
  155. }
  156. },
  157. {
  158. "path": "pages/my/invitationUser",
  159. "style": {
  160. "navigationBarTitleText": "分享好友",
  161. "enablePullDownRefresh": false,
  162. "app-plus": {
  163. "bounce": "none",
  164. "scrollIndicator": "none",
  165. "titleNView": true
  166. }
  167. }
  168. },
  169. {
  170. "path": "pages/my/cooperation",
  171. "style": {
  172. "navigationBarTitleText": "成为代理商",
  173. "enablePullDownRefresh": false,
  174. "app-plus": {
  175. "bounce": "none",
  176. "scrollIndicator": "none",
  177. "titleNView": true
  178. }
  179. }
  180. },
  181. {
  182. "path": "pages/my/hehuo",
  183. "style": {
  184. "navigationBarTitleText": "成为按摩师",
  185. "enablePullDownRefresh": false,
  186. "app-plus": {
  187. "bounce": "none",
  188. "scrollIndicator": "none",
  189. "titleNView": true
  190. }
  191. }
  192. },
  193. {
  194. "path": "pages/my/jinji",
  195. "style": {
  196. "navigationBarTitleText": "紧急求助",
  197. "navigationBarBackgroundColor": "#3FCB46",
  198. "navigationBarTextStyle": "white"
  199. }
  200. },
  201. {
  202. "path": "pages/my/userinfo",
  203. "style": {
  204. "navigationBarTitleText": "个人信息"
  205. }
  206. },
  207. // #ifdef H5
  208. {
  209. "path": "pages/public/login",
  210. "style": {
  211. "navigationBarTitleText": "登录",
  212. "app-plus": {
  213. "titleNView": false
  214. }
  215. }
  216. },
  217. // #endif
  218. // #ifndef H5
  219. {
  220. "path": "pages/public/login",
  221. "style": {
  222. "navigationBarTitleText": "登录"
  223. }
  224. },
  225. // #endif
  226. {
  227. "path": "pages/public/bind",
  228. "style": {
  229. "navigationBarTitleText": "绑定手机号"
  230. }
  231. },
  232. {
  233. "path": "pages/public/forgetPwd",
  234. "style": {
  235. "navigationBarTitleText": "重置密码"
  236. }
  237. },
  238. {
  239. "path": "pages/public/loginphone",
  240. "style": {
  241. "navigationBarTitleText": "登录"
  242. }
  243. },
  244. {
  245. "path": "pages/public/loginmsg",
  246. "style": {
  247. "navigationBarTitleText": "登录"
  248. }
  249. },
  250. {
  251. "path": "pages/public/pwd",
  252. "style": {
  253. "navigationBarTitleText": "修改密码"
  254. }
  255. },
  256. {
  257. "path": "pages/public/register",
  258. "style": {
  259. "navigationBarTitleText": "注册"
  260. }
  261. },
  262. // #ifdef H5
  263. {
  264. "path": "pages/order/index",
  265. "style": {
  266. "navigationBarTitleText": "我的订单",
  267. "enablePullDownRefresh": true,
  268. "app-plus": {
  269. "titleNView": false
  270. }
  271. }
  272. },
  273. // #endif
  274. // #ifndef H5
  275. {
  276. "path": "pages/order/index",
  277. "style": {
  278. "navigationBarTitleText": "我的订单"
  279. }
  280. },
  281. // #endif
  282. // #ifdef H5
  283. {
  284. "path": "pages/therapist/therapist",
  285. "style": {
  286. "navigationBarTitleText": "理疗师",
  287. "enablePullDownRefresh": true,
  288. "app-plus": {
  289. "titleNView": false
  290. }
  291. }
  292. },
  293. // #endif
  294. // #ifndef H5
  295. {
  296. "path": "pages/therapist/therapist",
  297. "style": {
  298. "navigationBarTitleText": "理疗师",
  299. "enablePullDownRefresh": true
  300. }
  301. },
  302. // #endif
  303. {
  304. "path": "pages/therapist/therapistList",
  305. "style": {
  306. "navigationBarTitleText": "选择技师",
  307. "enablePullDownRefresh": true,
  308. "app-plus": {
  309. "titleNView": false
  310. }
  311. }
  312. }, {
  313. "path": "pages/therapist/orderDetail",
  314. "style": {
  315. "navigationBarTitleText": "技师详情"
  316. }
  317. }
  318. ],
  319. "subPackages": [{
  320. "root": "my",
  321. "pages": [{
  322. "path": "help/feedbackIndex",
  323. "style": {
  324. "navigationBarTitleText": "帮助中心",
  325. "enablePullDownRefresh": false
  326. }
  327. }, {
  328. "path": "help/helpDetail",
  329. "style": {
  330. "navigationBarTitleText": "帮助详情",
  331. "enablePullDownRefresh": false
  332. }
  333. }, {
  334. "path": "hongbao/youhuijuan",
  335. "style": {
  336. "navigationBarTitleText": "优惠券",
  337. "enablePullDownRefresh": true
  338. }
  339. }, {
  340. "path": "gird/guanzhu",
  341. "style": {
  342. "navigationBarTitleText": "我的粉丝",
  343. "enablePullDownRefresh": true
  344. }
  345. },
  346. {
  347. "path": "gird/visitor",
  348. "style": {
  349. "navigationBarTitleText": "最近访客",
  350. "enablePullDownRefresh": true
  351. }
  352. },
  353. {
  354. "path": "address/address",
  355. "style": {
  356. "navigationBarTitleText": "地址管理",
  357. "enablePullDownRefresh": true
  358. }
  359. },
  360. {
  361. "path": "address/Endaddress",
  362. "style": {
  363. "navigationBarTitleText": "添加地址",
  364. "enablePullDownRefresh": true
  365. }
  366. },
  367. {
  368. "path": "gird/browse",
  369. "style": {
  370. "navigationBarTitleText": "浏览足迹",
  371. "enablePullDownRefresh": true
  372. }
  373. }, {
  374. "path": "gird/shoucang",
  375. "style": {
  376. "navigationBarTitleText": "我的收藏",
  377. "enablePullDownRefresh": true
  378. }
  379. },
  380. {
  381. "path": "renzheng/index",
  382. "style": {
  383. "navigationBarTitleText": "月嫂认证"
  384. }
  385. },
  386. //#ifdef MP-WEIXIN
  387. {
  388. "path": "vip/index",
  389. "style": {
  390. "navigationBarTitleText": "会员中心",
  391. "app-plus": {
  392. "titleNView": false
  393. }
  394. }
  395. },
  396. //#endif
  397. //#ifndef MP-WEIXIN
  398. {
  399. "path": "vip/index",
  400. "style": {
  401. "navigationBarTitleText": "会员中心",
  402. "app-plus": {
  403. "titleNView": true
  404. }
  405. }
  406. },
  407. //#endif
  408. {
  409. "path": "wallet/index",
  410. "style": {
  411. "navigationBarTitleText": "我的钱包"
  412. }
  413. },
  414. {
  415. "path": "wallet/teammoneydetail",
  416. "style": {
  417. "navigationBarTitleText": "商家收益",
  418. "enablePullDownRefresh": true
  419. }
  420. },
  421. {
  422. "path": "gonghui/index",
  423. "style": {
  424. "navigationBarTitleText": "我的商家"
  425. }
  426. },
  427. {
  428. "path": "gonghui/therapist",
  429. "style": {
  430. "navigationBarTitleText": "商家技师"
  431. }
  432. },
  433. {
  434. "path": "wallet/yinhangka",
  435. "style": {
  436. "navigationBarTitleText": "银行卡账号"
  437. }
  438. },
  439. {
  440. "path": "wallet/zhifubao",
  441. "style": {
  442. "navigationBarTitleText": ""
  443. }
  444. },
  445. {
  446. "path": "wallet/cashList",
  447. "style": {
  448. "navigationBarTitleText": "提现记录",
  449. "enablePullDownRefresh": true
  450. }
  451. },
  452. {
  453. "path": "wallet/mymoneydetail",
  454. "style": {
  455. "navigationBarTitleText": "钱包明细",
  456. "enablePullDownRefresh": true
  457. }
  458. },
  459. {
  460. "path": "wallet/usermoneydetail",
  461. "style": {
  462. "navigationBarTitleText": "收益明细",
  463. "enablePullDownRefresh": true
  464. }
  465. },
  466. {
  467. "path": "order/pay",
  468. "style": {
  469. "navigationBarTitleText": "订单详情"
  470. }
  471. },
  472. {
  473. "path": "order/complain",
  474. "style": {
  475. "navigationBarTitleText": "投诉"
  476. }
  477. },
  478. {
  479. "path": "order/tousuList",
  480. "style": {
  481. "navigationBarTitleText": "我的投诉"
  482. }
  483. },
  484. {
  485. "path": "publish/index",
  486. "style": {
  487. "navigationBarTitleText": "我的发布"
  488. }
  489. },
  490. {
  491. "path": "publish/type",
  492. "style": {
  493. "navigationBarTitleText": "发布类型"
  494. }
  495. },
  496. {
  497. "path": "publish/yaoqing",
  498. "style": {
  499. "navigationBarTitleText": "分享好友"
  500. }
  501. },
  502. {
  503. "path": "publish/download",
  504. "style": {
  505. "navigationBarTitleText": "APP下载"
  506. }
  507. },
  508. {
  509. "path": "publish/editor",
  510. "style": {
  511. "navigationBarTitleText": "个人发布"
  512. }
  513. },
  514. {
  515. "path": "publish/firm",
  516. "style": {
  517. "navigationBarTitleText": "企业发布"
  518. }
  519. },
  520. {
  521. "path": "setting/customer",
  522. "style": {
  523. "navigationBarTitleText": "在线客服"
  524. }
  525. },
  526. {
  527. "path": "setting/zhuxiao",
  528. "style": {
  529. "navigationBarTitleText": "注销账号"
  530. }
  531. },
  532. {
  533. "path": "feedback/index",
  534. "style": {
  535. "navigationBarTitleText": "意见反馈"
  536. }
  537. },
  538. {
  539. "path": "setting/help",
  540. "style": {
  541. "navigationBarTitleText": "帮助中心"
  542. }
  543. },
  544. {
  545. "path": "setting/index",
  546. "style": {
  547. "navigationBarTitleText": "设置中心"
  548. }
  549. },
  550. {
  551. "path": "setting/mimi",
  552. "style": {
  553. "navigationBarTitleText": "隐私政策"
  554. }
  555. },
  556. {
  557. "path": "setting/xieyi",
  558. "style": {
  559. "navigationBarTitleText": "用户协议"
  560. }
  561. },
  562. {
  563. "path": "setting/about",
  564. "style": {
  565. "navigationBarTitleText": ""
  566. }
  567. },
  568. {
  569. "path": "setting/userphone",
  570. "style": {
  571. "navigationBarTitleText": "修改手机号"
  572. }
  573. },
  574. {
  575. "path": "order/feedback",
  576. "style": {
  577. "navigationBarTitleText": "评价"
  578. }
  579. },
  580. {
  581. "path": "takeOrder/index",
  582. "style": {
  583. "navigationBarTitleText": "我的接单"
  584. }
  585. },
  586. {
  587. "path": "takeOrder/takeDetail",
  588. "style": {
  589. "navigationBarTitleText": "接单详情"
  590. }
  591. },
  592. {
  593. "path": "setting/chat",
  594. "style": {
  595. "navigationBarTitleText": "联系客服"
  596. }
  597. }
  598. ]
  599. }],
  600. "globalStyle": {
  601. "navigationBarTextStyle": "black",
  602. "navigationBarTitleText": "帝侍天上门",
  603. "navigationBarBackgroundColor": "#FFFFFF",
  604. "backgroundColor": "#ffffff"
  605. },
  606. "tabBar": {
  607. "color": "#DBDBDB",
  608. "selectedColor": "#FF6E98",
  609. "backgroundColor": "#FFFFFF",
  610. "borderStyle": "black",
  611. "list": [{
  612. "pagePath": "pages/index/index",
  613. "iconPath": "static/tabbar/index.png",
  614. "selectedIconPath": "static/tabbar/index_.png",
  615. "text": "首页"
  616. }, {
  617. "pagePath": "pages/therapist/therapist",
  618. "iconPath": "static/tabbar/therapist.png",
  619. "selectedIconPath": "static/tabbar/therapist_.png",
  620. "text": "理疗师"
  621. },
  622. {
  623. "pagePath": "pages/order/index",
  624. "iconPath": "static/tabbar/order.png",
  625. "selectedIconPath": "static/tabbar/order_.png",
  626. "text": "订单"
  627. },
  628. {
  629. "pagePath": "pages/my/index",
  630. "iconPath": "static/tabbar/my.png",
  631. "selectedIconPath": "static/tabbar/my_.png",
  632. "text": "我的"
  633. }
  634. ]
  635. }
  636. }