pages.json 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  6. {
  7. "path": "pages/index/index",
  8. "style": {
  9. "navigationBarTitleText": "首页",
  10. // "navigationBarBackgroundColor": "#E5EEFF",
  11. "navigationBarBackgroundColor": "#00DD9A",
  12. "navigationBarTextStyle": "white",
  13. "enablePullDownRefresh": true
  14. // #ifdef H5
  15. ,
  16. "navigationStyle": "custom"
  17. // #endif
  18. }
  19. },
  20. {
  21. "path": "pages/index/search/index",
  22. "style": {
  23. "navigationBarTitleText": "搜索",
  24. "app-plus": {
  25. "titleNView": true
  26. }
  27. // #ifdef H5
  28. ,
  29. "navigationStyle": "custom"
  30. // #endif
  31. }
  32. },
  33. {
  34. "path": "pages/index/game/gameList",
  35. "style": {
  36. "navigationBarTitleText": "人才库",
  37. "enablePullDownRefresh": true,
  38. "navigationStyle": "custom"
  39. }
  40. },
  41. {
  42. "path": "pages/index/game/order",
  43. "style": {
  44. "navigationBarTitleText": "岗位详情"
  45. // #ifdef H5
  46. ,
  47. "navigationStyle": "custom"
  48. // #endif
  49. }
  50. },
  51. {
  52. "path": "pages/index/game/orderDet",
  53. "style": {
  54. "navigationBarTitleText": "简历详情"
  55. // #ifdef H5
  56. ,
  57. "navigationStyle": "custom"
  58. // #endif
  59. }
  60. },
  61. {
  62. "path": "pages/index/citys/citys",
  63. "style": {
  64. "navigationBarTitleText": "城市"
  65. // #ifdef H5
  66. ,
  67. "navigationStyle": "custom"
  68. // #endif
  69. }
  70. },
  71. {
  72. "path": "pages/index/webView",
  73. "style": {
  74. "navigationBarTitleText": "网页"
  75. // #ifdef H5
  76. ,
  77. "navigationStyle": "custom"
  78. // #endif
  79. }
  80. },
  81. {
  82. "path": "pages/msg/index",
  83. "style": {
  84. "navigationBarTitleText": "消息",
  85. "enablePullDownRefresh": true
  86. // #ifdef H5
  87. ,
  88. "navigationStyle": "custom"
  89. // #endif
  90. }
  91. },
  92. {
  93. "path": "pages/msg/im",
  94. "style": {
  95. "navigationBarTitleText": ""
  96. // #ifdef H5
  97. ,
  98. "navigationStyle": "custom"
  99. // #endif
  100. }
  101. },
  102. {
  103. "path": "pages/msg/message",
  104. "style": {
  105. "navigationBarTitleText": "系统消息",
  106. "enablePullDownRefresh": true
  107. // #ifdef H5
  108. ,
  109. "navigationStyle": "custom"
  110. // #endif
  111. }
  112. },
  113. {
  114. "path": "pages/my/index",
  115. "style": {
  116. "navigationBarTitleText": "我的",
  117. // "navigationBarBackgroundColor": "#E5EEFF"
  118. "navigationBarBackgroundColor": "#D9FEED"
  119. // #ifdef H5
  120. ,
  121. "navigationStyle": "custom"
  122. // #endif
  123. }
  124. },
  125. {
  126. "path": "pages/my/onlineResume",
  127. "style": {
  128. "navigationBarTitleText": "在线简历",
  129. "navigationStyle": "custom"
  130. }
  131. },
  132. {
  133. "path": "pages/my/workExperience",
  134. "style": {
  135. "navigationBarTitleText": "工作经历",
  136. "navigationStyle": "custom"
  137. }
  138. },
  139. {
  140. "path": "pages/my/invitationUser",
  141. "style": {
  142. "navigationBarTitleText": "邀请好友",
  143. "navigationBarBackgroundColor": "#E5EEFF",
  144. "enablePullDownRefresh": false,
  145. "app-plus": {
  146. "bounce": "none",
  147. "scrollIndicator": "none",
  148. "titleNView": true
  149. }
  150. // #ifdef H5
  151. ,
  152. "navigationStyle": "custom"
  153. // #endif
  154. }
  155. },
  156. {
  157. "path": "pages/my/invitationUserqy",
  158. "style": {
  159. "navigationBarTitleText": "邀请好友",
  160. "navigationBarBackgroundColor": "#E5EEFF",
  161. "enablePullDownRefresh": false,
  162. "app-plus": {
  163. "bounce": "none",
  164. "scrollIndicator": "none",
  165. "titleNView": true
  166. }
  167. // #ifdef H5
  168. ,
  169. "navigationStyle": "custom"
  170. // #endif
  171. }
  172. },
  173. {
  174. "path": "pages/my/userinfo",
  175. "style": {
  176. "navigationBarTitleText": "个人信息"
  177. // #ifdef H5
  178. ,
  179. "navigationStyle": "custom"
  180. // #endif
  181. }
  182. },
  183. {
  184. "path": "pages/my/ruleCenter",
  185. "style": {
  186. "navigationBarTitleText": "规则中心"
  187. // #ifdef H5
  188. ,
  189. "navigationStyle": "custom"
  190. // #endif
  191. }
  192. },
  193. {
  194. "path": "pages/public/login",
  195. "style": {
  196. "navigationBarTitleText": "登录"
  197. // #ifdef H5
  198. ,
  199. "navigationStyle": "custom"
  200. // #endif
  201. }
  202. },
  203. {
  204. "path": "pages/public/bind",
  205. "style": {
  206. "navigationBarTitleText": "绑定手机号"
  207. // #ifdef H5
  208. ,
  209. "navigationStyle": "custom"
  210. // #endif
  211. }
  212. },
  213. {
  214. "path": "pages/public/forgetPwd",
  215. "style": {
  216. "navigationBarTitleText": "重置密码"
  217. // #ifdef H5
  218. ,
  219. "navigationStyle": "custom"
  220. // #endif
  221. }
  222. },
  223. {
  224. "path": "pages/public/loginphone",
  225. "style": {
  226. "navigationBarTitleText": "登录"
  227. // #ifdef H5
  228. ,
  229. "navigationStyle": "custom"
  230. // #endif
  231. }
  232. },
  233. {
  234. "path": "pages/public/pwd",
  235. "style": {
  236. "navigationBarTitleText": "修改密码"
  237. // #ifdef H5
  238. ,
  239. "navigationStyle": "custom"
  240. // #endif
  241. }
  242. },
  243. {
  244. "path": "pages/public/register",
  245. "style": {
  246. "navigationBarTitleText": "注册"
  247. // #ifdef H5
  248. ,
  249. "navigationStyle": "custom"
  250. // #endif
  251. }
  252. },
  253. {
  254. "path": "pages/index/game/tuiList",
  255. "style": {
  256. "navigationBarTitleText": "推送列表",
  257. "enablePullDownRefresh": false
  258. // #ifdef H5
  259. ,
  260. "navigationStyle": "custom"
  261. // #endif
  262. }
  263. },
  264. {
  265. "path": "pages/msg/addmsg",
  266. "style": {
  267. "navigationBarTitleText": "常用语",
  268. "enablePullDownRefresh": false
  269. // #ifdef H5
  270. ,
  271. "navigationStyle": "custom"
  272. // #endif
  273. }
  274. },
  275. {
  276. "path": "pages/msg/chathistory",
  277. "style": {
  278. "navigationBarTitleText": "聊天记录",
  279. "enablePullDownRefresh": false
  280. // #ifdef H5
  281. ,
  282. "navigationStyle": "custom"
  283. // #endif
  284. }
  285. },
  286. {
  287. "path": "pages/msg/add",
  288. "style": {
  289. "navigationBarTitleText": "新增",
  290. "enablePullDownRefresh": false
  291. // #ifdef H5
  292. ,
  293. "navigationStyle": "custom"
  294. // #endif
  295. }
  296. },
  297. {
  298. "path": "pages/msg/regular",
  299. "style": {
  300. "navigationBarTitleText": "常用语",
  301. "enablePullDownRefresh": false,
  302. "navigationStyle": "custom"
  303. }
  304. },
  305. {
  306. "path": "pages/msg/search",
  307. "style": {
  308. "navigationBarTitleText": "消息搜索",
  309. "enablePullDownRefresh": true,
  310. "navigationStyle": "custom"
  311. }
  312. },
  313. {
  314. "path": "pages/public/selectIdentity/selectIdentity",
  315. "style": {
  316. "navigationBarTitleText": "选择身份",
  317. "enablePullDownRefresh": false
  318. // #ifdef H5
  319. ,
  320. "navigationStyle": "custom"
  321. // #endif
  322. }
  323. }
  324. ],
  325. "subPackages": [
  326. {
  327. "root": "package",
  328. "pages": [
  329. {
  330. "path": "list/hezuo",
  331. "style": {
  332. "navigationBarTitleText": "企业合作"
  333. // #ifdef H5
  334. ,
  335. "navigationStyle": "custom"
  336. // #endif
  337. // "enablePullDownRefresh": true
  338. }
  339. },
  340. {
  341. "path": "list/index",
  342. "style": {
  343. "navigationBarTitleText": "项目查询",
  344. "enablePullDownRefresh": true
  345. // #ifdef H5
  346. ,
  347. "navigationStyle": "custom"
  348. // #endif
  349. }
  350. },
  351. {
  352. "path": "list/studyUp",
  353. "style": {
  354. "navigationBarTitleText": "学历提升",
  355. "enablePullDownRefresh": false
  356. // #ifdef H5
  357. ,
  358. "navigationStyle": "custom"
  359. // #endif
  360. }
  361. },
  362. {
  363. "path": "list/train",
  364. "style": {
  365. "navigationBarTitleText": "证书培训",
  366. "enablePullDownRefresh": false
  367. // #ifdef H5
  368. ,
  369. "navigationStyle": "custom"
  370. // #endif
  371. }
  372. },
  373. {
  374. "path": "list/zhiCheng",
  375. "style": {
  376. "navigationBarTitleText": "职称评审",
  377. "enablePullDownRefresh": false
  378. // #ifdef H5
  379. ,
  380. "navigationStyle": "custom"
  381. // #endif
  382. }
  383. },
  384. {
  385. "path": "list/baoming",
  386. "style": {
  387. "navigationBarTitleText": "培训报名",
  388. "enablePullDownRefresh": false
  389. // #ifdef H5
  390. ,
  391. "navigationStyle": "custom"
  392. // #endif
  393. }
  394. },
  395. //个人
  396. {
  397. "path": "my/resume",
  398. "style": {
  399. "navigationBarTitleText": "我的简历",
  400. "enablePullDownRefresh": true
  401. // #ifdef H5
  402. ,
  403. "navigationStyle": "custom"
  404. // #endif
  405. }
  406. },
  407. {
  408. "path": "my/apply",
  409. "style": {
  410. "navigationBarTitleText": "我的报名",
  411. "enablePullDownRefresh": true
  412. // #ifdef H5
  413. ,
  414. "navigationStyle": "custom"
  415. // #endif
  416. }
  417. },
  418. {
  419. "path": "my/applyType",
  420. "style": {
  421. "navigationBarTitleText": "",
  422. "enablePullDownRefresh": false
  423. // #ifdef H5
  424. ,
  425. "navigationStyle": "custom"
  426. // #endif
  427. }
  428. },
  429. {
  430. "path": "my/pingbi",
  431. "style": {
  432. "navigationBarTitleText": "",
  433. "enablePullDownRefresh": false
  434. // #ifdef H5
  435. ,
  436. "navigationStyle": "custom"
  437. // #endif
  438. }
  439. },
  440. {
  441. "path": "list/fuli",
  442. "style": {
  443. "navigationBarTitleText": "福利查询",
  444. "enablePullDownRefresh": false
  445. // #ifdef H5
  446. ,
  447. "navigationStyle": "custom"
  448. // #endif
  449. }
  450. },
  451. {
  452. "path": "jobIntention/jobIntention",
  453. "style": {
  454. "navigationBarTitleText": "管理求职意向",
  455. "enablePullDownRefresh": false
  456. // #ifdef H5
  457. ,
  458. "navigationStyle": "custom"
  459. // #endif
  460. }
  461. },
  462. {
  463. "path": "jobIntention/add",
  464. "style": {
  465. "navigationBarTitleText": "求职意向",
  466. "enablePullDownRefresh": false
  467. // #ifdef H5
  468. ,
  469. "navigationStyle": "custom"
  470. // #endif
  471. }
  472. },
  473. {
  474. "path": "jobIntention/edit",
  475. "style": {
  476. "navigationBarTitleText": "求职意向",
  477. "enablePullDownRefresh": false
  478. // #ifdef H5
  479. ,
  480. "navigationStyle": "custom"
  481. // #endif
  482. }
  483. },
  484. {
  485. "path": "jobIntention/jobList",
  486. "style": {
  487. "navigationBarTitleText": "岗位分类",
  488. "enablePullDownRefresh": false
  489. // #ifdef H5
  490. ,
  491. "navigationStyle": "custom"
  492. // #endif
  493. }
  494. },
  495. {
  496. "path": "jobIntention/industry",
  497. "style": {
  498. "navigationBarTitleText": "期望行业",
  499. "enablePullDownRefresh": false
  500. // #ifdef H5
  501. ,
  502. "navigationStyle": "custom"
  503. // #endif
  504. }
  505. },
  506. {
  507. "path": "jobIntention/city",
  508. "style": {
  509. "navigationBarTitleText": "工作地址",
  510. "enablePullDownRefresh": false
  511. // #ifdef H5
  512. ,
  513. "navigationStyle": "custom"
  514. // #endif
  515. }
  516. },
  517. {
  518. "path": "jobIntention/tagManage",
  519. "style": {
  520. "navigationBarTitleText": "标签管理",
  521. "enablePullDownRefresh": false
  522. // #ifdef H5
  523. ,
  524. "navigationStyle": "custom"
  525. // #endif
  526. }
  527. },
  528. {
  529. "path": "jobIntention/addExpectation",
  530. "style": {
  531. "navigationBarTitleText": "添加求职期望",
  532. "enablePullDownRefresh": false
  533. // #ifdef H5
  534. ,
  535. "navigationStyle": "custom"
  536. // #endif
  537. }
  538. },
  539. {
  540. "path": "jobIntention/preferenceSetting",
  541. "style": {
  542. "navigationBarTitleText": "从事偏好设置",
  543. "enablePullDownRefresh": false
  544. // #ifdef H5
  545. ,
  546. "navigationStyle": "custom"
  547. // #endif
  548. }
  549. },
  550. {
  551. "path": "jobIntention/jobSkills",
  552. "style": {
  553. "navigationBarTitleText": "岗位职业技能",
  554. "enablePullDownRefresh": false,
  555. "navigationStyle": "custom"
  556. }
  557. },
  558. {
  559. "path": "blackList/blackList",
  560. "style": {
  561. "navigationBarTitleText": "黑名单",
  562. "enablePullDownRefresh": true
  563. // #ifdef H5
  564. ,
  565. "navigationStyle": "custom"
  566. // #endif
  567. }
  568. },
  569. {
  570. "path": "addJob/addJob",
  571. "style": {
  572. "navigationBarTitleText": "发布招聘",
  573. "enablePullDownRefresh": false
  574. // #ifdef H5
  575. ,
  576. "navigationStyle": "custom"
  577. // #endif
  578. }
  579. },
  580. {
  581. "path": "screen/city",
  582. "style": {
  583. "navigationBarTitleText": "城市",
  584. "enablePullDownRefresh": false
  585. // #ifdef H5
  586. ,
  587. "navigationStyle": "custom"
  588. // #endif
  589. }
  590. },
  591. {
  592. "path": "screen/screen",
  593. "style": {
  594. "navigationBarTitleText": "筛选",
  595. "enablePullDownRefresh": false
  596. // #ifdef H5
  597. ,
  598. "navigationStyle": "custom"
  599. // #endif
  600. }
  601. },
  602. {
  603. "path": "screen/screenComp",
  604. "style": {
  605. "navigationBarTitleText": "筛选",
  606. "enablePullDownRefresh": false
  607. // #ifdef H5
  608. ,
  609. "navigationStyle": "custom"
  610. // #endif
  611. }
  612. },
  613. {
  614. "path": "records/records",
  615. "style": {
  616. "navigationBarTitleText": "浏览记录",
  617. "enablePullDownRefresh": true
  618. // #ifdef H5
  619. // ,
  620. // "navigationStyle": "custom"
  621. // #endif
  622. }
  623. },
  624. {
  625. "path": "search/search",
  626. "style": {
  627. "navigationBarTitleText": "搜索",
  628. "enablePullDownRefresh": true
  629. // #ifdef H5
  630. ,
  631. "navigationStyle": "custom"
  632. // #endif
  633. }
  634. },
  635. {
  636. "path": "deliveryRecord/deliveryRecord",
  637. "style": {
  638. "navigationBarTitleText": "投递记录",
  639. "enablePullDownRefresh": true
  640. // ,
  641. // #ifdef H5
  642. // "navigationStyle": "custom"
  643. // #endif
  644. }
  645. },
  646. {
  647. "path": "myLove/myLove",
  648. "style": {
  649. "navigationBarTitleText": "我的收藏",
  650. "enablePullDownRefresh": true
  651. // #ifdef H5
  652. ,
  653. "navigationStyle": "custom"
  654. // #endif
  655. }
  656. }
  657. ]
  658. },
  659. {
  660. "root": "my",
  661. "pages": [
  662. {
  663. "path": "wallet/shouyi",
  664. "style": {
  665. "navigationBarTitleText": "收益明细",
  666. "enablePullDownRefresh": true
  667. // #ifdef H5
  668. ,
  669. "navigationStyle": "custom"
  670. // #endif
  671. }
  672. },
  673. {
  674. "path": "team/team",
  675. "style": {
  676. "navigationBarTitleText": "我的团队",
  677. "enablePullDownRefresh": true
  678. // #ifdef H5
  679. ,
  680. "navigationStyle": "custom"
  681. // #endif
  682. }
  683. },
  684. {
  685. "path": "team/earnings",
  686. "style": {
  687. "navigationBarTitleText": "我的收益",
  688. "enablePullDownRefresh": true
  689. // #ifdef H5
  690. ,
  691. "navigationStyle": "custom"
  692. // #endif
  693. }
  694. },
  695. {
  696. "path": "gird/guanzhu",
  697. "style": {
  698. "navigationBarTitleText": "我的粉丝",
  699. "enablePullDownRefresh": true
  700. // #ifdef H5
  701. ,
  702. "navigationStyle": "custom"
  703. // #endif
  704. }
  705. },
  706. {
  707. "path": "gird/visitor",
  708. "style": {
  709. "navigationBarTitleText": "最近访客",
  710. "enablePullDownRefresh": true
  711. // #ifdef H5
  712. ,
  713. "navigationStyle": "custom"
  714. // #endif
  715. }
  716. },
  717. {
  718. "path": "address/address",
  719. "style": {
  720. "navigationBarTitleText": "地址管理",
  721. "enablePullDownRefresh": true
  722. // #ifdef H5
  723. ,
  724. "navigationStyle": "custom"
  725. // #endif
  726. }
  727. },
  728. {
  729. "path": "address/Endaddress",
  730. "style": {
  731. "navigationBarTitleText": "添加地址",
  732. "enablePullDownRefresh": true
  733. // #ifdef H5
  734. ,
  735. "navigationStyle": "custom"
  736. // #endif
  737. }
  738. },
  739. {
  740. "path": "gird/browse",
  741. "style": {
  742. "navigationBarTitleText": "浏览历史",
  743. "enablePullDownRefresh": true
  744. // #ifdef H5
  745. ,
  746. "navigationStyle": "custom"
  747. // #endif
  748. }
  749. },
  750. {
  751. "path": "renzheng/index",
  752. "style": {
  753. "navigationBarTitleText": "企业认证"
  754. // #ifdef H5
  755. ,
  756. "navigationStyle": "custom"
  757. // #endif
  758. }
  759. },
  760. {
  761. "path": "renzheng/zhuanrang",
  762. "style": {
  763. "navigationBarTitleText": "转让企业"
  764. // #ifdef H5
  765. ,
  766. "navigationStyle": "custom"
  767. // #endif
  768. }
  769. },
  770. {
  771. "path": "vip/index",
  772. "style": {
  773. "navigationBarTitleText": "会员中心",
  774. // "navigationBarBackgroundColor": "#111111",
  775. "navigationBarTextStyle": "black"
  776. // #ifdef H5
  777. ,
  778. "navigationStyle": "custom"
  779. // #endif
  780. }
  781. },
  782. {
  783. "path": "wallet/wallet",
  784. "style": {
  785. "navigationBarTitleText": "我的钻石",
  786. "navigationBarBackgroundColor": "#00DD9A",
  787. "enablePullDownRefresh": true,
  788. "navigationBarTextStyle": "white"
  789. // #ifdef H5
  790. ,
  791. "navigationStyle": "custom"
  792. // #endif
  793. }
  794. },
  795. {
  796. "path": "wallet/tixian",
  797. "style": {
  798. "navigationBarTitleText": "提现"
  799. // #ifdef H5
  800. ,
  801. "navigationStyle": "custom"
  802. // #endif
  803. }
  804. },
  805. {
  806. "path": "wallet/index",
  807. "style": {
  808. "navigationBarTitleText": "钻石充值"
  809. // #ifdef H5
  810. ,
  811. "navigationStyle": "custom"
  812. // #endif
  813. }
  814. },
  815. {
  816. "path": "wallet/zhifubao",
  817. "style": {
  818. "navigationBarTitleText": "提现账号"
  819. // #ifdef H5
  820. ,
  821. "navigationStyle": "custom"
  822. // #endif
  823. }
  824. },
  825. {
  826. "path": "wallet/cashList",
  827. "style": {
  828. "navigationBarTitleText": "提现记录",
  829. "enablePullDownRefresh": true
  830. // #ifdef H5
  831. ,
  832. "navigationStyle": "custom"
  833. // #endif
  834. }
  835. },
  836. {
  837. "path": "wallet/mymoneydetail",
  838. "style": {
  839. "navigationBarTitleText": "钱包明细",
  840. "enablePullDownRefresh": true
  841. // #ifdef H5
  842. ,
  843. "navigationStyle": "custom"
  844. // #endif
  845. }
  846. },
  847. {
  848. "path": "order/index",
  849. "style": {
  850. "navigationBarTitleText": "我的招聘"
  851. // #ifdef H5
  852. ,
  853. "navigationStyle": "custom"
  854. // #endif
  855. }
  856. },
  857. {
  858. "path": "order/pay",
  859. "style": {
  860. "navigationBarTitleText": "岗位详情"
  861. // #ifdef H5
  862. ,
  863. "navigationStyle": "custom"
  864. // #endif
  865. }
  866. },
  867. {
  868. "path": "order/complain",
  869. "style": {
  870. "navigationBarTitleText": "投诉"
  871. // #ifdef H5
  872. ,
  873. "navigationStyle": "custom"
  874. // #endif
  875. }
  876. },
  877. {
  878. "path": "publish/resumesPost",
  879. "style": {
  880. "navigationBarTitleText": "添加岗位"
  881. // #ifdef H5
  882. ,
  883. "navigationStyle": "custom"
  884. // #endif
  885. }
  886. },
  887. {
  888. "path": "publish/gangw",
  889. "style": {
  890. "navigationBarTitleText": "岗位添加"
  891. // #ifdef H5
  892. ,
  893. "navigationStyle": "custom"
  894. // #endif
  895. }
  896. },
  897. {
  898. "path": "publish/gangws",
  899. "style": {
  900. "navigationBarTitleText": "岗位添加"
  901. // #ifdef H5
  902. ,
  903. "navigationStyle": "custom"
  904. // #endif
  905. }
  906. },
  907. {
  908. "path": "publish/editor",
  909. "style": {
  910. "navigationBarTitleText": "我的简历"
  911. // #ifdef H5
  912. ,
  913. "navigationStyle": "custom"
  914. // #endif
  915. }
  916. },
  917. {
  918. "path": "publish/serveType",
  919. "style": {
  920. "navigationBarTitleText": ""
  921. // #ifdef H5
  922. ,
  923. "navigationStyle": "custom"
  924. // #endif
  925. }
  926. },
  927. {
  928. "path": "publish/workhistory",
  929. "style": {
  930. "navigationBarTitleText": "工作经历"
  931. // #ifdef H5
  932. ,
  933. "navigationStyle": "custom"
  934. // #endif
  935. }
  936. },
  937. {
  938. "path": "setting/customer",
  939. "style": {
  940. "navigationBarTitleText": "在线客服"
  941. // #ifdef H5
  942. ,
  943. "navigationStyle": "custom"
  944. // #endif
  945. }
  946. },
  947. {
  948. "path": "feedback/index",
  949. "style": {
  950. "navigationBarTitleText": "意见反馈"
  951. // #ifdef H5
  952. ,
  953. "navigationStyle": "custom"
  954. // #endif
  955. }
  956. },
  957. {
  958. "path": "setting/index",
  959. "style": {
  960. "navigationBarTitleText": "设置中心"
  961. // #ifdef H5
  962. ,
  963. "navigationStyle": "custom"
  964. // #endif
  965. }
  966. },
  967. {
  968. "path": "setting/mimi",
  969. "style": {
  970. "navigationBarTitleText": "隐私政策"
  971. // #ifdef H5
  972. ,
  973. "navigationStyle": "custom"
  974. // #endif
  975. }
  976. },
  977. {
  978. "path": "setting/xieyi",
  979. "style": {
  980. "navigationBarTitleText": "用户协议"
  981. // #ifdef H5
  982. ,
  983. "navigationStyle": "custom"
  984. // #endif
  985. }
  986. },
  987. {
  988. "path": "setting/about",
  989. "style": {
  990. "navigationBarTitleText": "关于我们"
  991. // #ifdef H5
  992. ,
  993. "navigationStyle": "custom"
  994. // #endif
  995. }
  996. },
  997. {
  998. "path": "setting/jobXy",
  999. "style": {
  1000. "navigationBarTitleText": "岗位发布协议"
  1001. // #ifdef H5
  1002. ,
  1003. "navigationStyle": "custom"
  1004. // #endif
  1005. }
  1006. },
  1007. {
  1008. "path": "setting/userphone",
  1009. "style": {
  1010. "navigationBarTitleText": "修改手机号"
  1011. // #ifdef H5
  1012. ,
  1013. "navigationStyle": "custom"
  1014. // #endif
  1015. }
  1016. },
  1017. {
  1018. "path": "order/feedback",
  1019. "style": {
  1020. "navigationBarTitleText": "评论"
  1021. // #ifdef H5
  1022. ,
  1023. "navigationStyle": "custom"
  1024. // #endif
  1025. }
  1026. },
  1027. {
  1028. "path": "takeOrder/index",
  1029. "style": {
  1030. "navigationBarTitleText": "我的接单"
  1031. // #ifdef H5
  1032. ,
  1033. "navigationStyle": "custom"
  1034. // #endif
  1035. }
  1036. },
  1037. {
  1038. "path": "takeOrder/takeDetail",
  1039. "style": {
  1040. "navigationBarTitleText": "接单详情"
  1041. // #ifdef H5
  1042. ,
  1043. "navigationStyle": "custom"
  1044. // #endif
  1045. }
  1046. },
  1047. {
  1048. "path": "setting/chat",
  1049. "style": {
  1050. "navigationBarTitleText": "联系客服"
  1051. // #ifdef H5
  1052. ,
  1053. "navigationStyle": "custom"
  1054. // #endif
  1055. }
  1056. },
  1057. {
  1058. "path": "publish/updataServeType",
  1059. "style": {
  1060. "navigationBarTitleText": "修改",
  1061. "enablePullDownRefresh": false
  1062. // #ifdef H5
  1063. ,
  1064. "navigationStyle": "custom"
  1065. // #endif
  1066. }
  1067. },
  1068. {
  1069. "path": "publish/updataServeTypes",
  1070. "style": {
  1071. "navigationBarTitleText": "修改",
  1072. "enablePullDownRefresh": false
  1073. // #ifdef H5
  1074. ,
  1075. "navigationStyle": "custom"
  1076. // #endif
  1077. }
  1078. },
  1079. {
  1080. "path": "publish/updataGangw",
  1081. "style": {
  1082. "navigationBarTitleText": "岗位添加",
  1083. "enablePullDownRefresh": false
  1084. // #ifdef H5
  1085. ,
  1086. "navigationStyle": "custom"
  1087. // #endif
  1088. }
  1089. },
  1090. {
  1091. "path": "publish/updataGangws",
  1092. "style": {
  1093. "navigationBarTitleText": "岗位添加",
  1094. "enablePullDownRefresh": false
  1095. // #ifdef H5
  1096. ,
  1097. "navigationStyle": "custom"
  1098. // #endif
  1099. }
  1100. },
  1101. {
  1102. "path": "order/myIndex",
  1103. "style": {
  1104. "navigationBarTitleText": "我的定制化",
  1105. "enablePullDownRefresh": false,
  1106. "navigationBarBackgroundColor": "#ffffff"
  1107. // #ifdef H5
  1108. ,
  1109. "navigationStyle": "custom"
  1110. // #endif
  1111. }
  1112. },
  1113. {
  1114. "path": "publish/serveTypes",
  1115. "style": {
  1116. "navigationBarTitleText": "定制化服务",
  1117. "enablePullDownRefresh": false,
  1118. "navigationBarBackgroundColor": "#ffffff"
  1119. // #ifdef H5
  1120. ,
  1121. "navigationStyle": "custom"
  1122. // #endif
  1123. }
  1124. },
  1125. {
  1126. "path": "publish/editors",
  1127. "style": {
  1128. "navigationBarTitleText": "查看",
  1129. "enablePullDownRefresh": false
  1130. // #ifdef H5
  1131. ,
  1132. "navigationStyle": "custom"
  1133. // #endif
  1134. }
  1135. },
  1136. {
  1137. "path": "setting/feedbackIndex",
  1138. "style": {
  1139. "navigationBarTitleText": "帮助中心",
  1140. "enablePullDownRefresh": false
  1141. // #ifdef H5
  1142. ,
  1143. "navigationStyle": "custom"
  1144. // #endif
  1145. }
  1146. },
  1147. {
  1148. "path": "setting/helpDetail",
  1149. "style": {
  1150. "navigationBarTitleText": "帮助中心",
  1151. "enablePullDownRefresh": false
  1152. // #ifdef H5
  1153. ,
  1154. "navigationStyle": "custom"
  1155. // #endif
  1156. }
  1157. },
  1158. {
  1159. "path": "matching/matching",
  1160. "style": {
  1161. "navigationBarTitleText": "快速入职",
  1162. "enablePullDownRefresh": false
  1163. // #ifdef H5
  1164. ,
  1165. "navigationStyle": "custom"
  1166. // #endif
  1167. }
  1168. },
  1169. {
  1170. "path": "enterpriseInfo/enterpriseInfo",
  1171. "style": {
  1172. "navigationBarTitleText": "企业详情",
  1173. "enablePullDownRefresh": false,
  1174. "navigationBarBackgroundColor": "#4B4D5C",
  1175. "navigationBarTextStyle": "white",
  1176. "app-plus": {
  1177. // 将回弹属性关掉
  1178. "bounce": "none"
  1179. }
  1180. // #ifdef H5
  1181. ,
  1182. "navigationStyle": "custom"
  1183. // #endif
  1184. }
  1185. },
  1186. {
  1187. "path": "vip/zhouka",
  1188. "style": {
  1189. "navigationBarTitleText": "人才库周卡",
  1190. "enablePullDownRefresh": false
  1191. // #ifdef H5
  1192. ,
  1193. "navigationStyle": "custom"
  1194. // #endif
  1195. }
  1196. },
  1197. {
  1198. "path": "setting/weekXiYi",
  1199. "style": {
  1200. "navigationBarTitleText": "会员开通协议",
  1201. "enablePullDownRefresh": false
  1202. // #ifdef H5
  1203. ,
  1204. "navigationStyle": "custom"
  1205. // #endif
  1206. }
  1207. },
  1208. {
  1209. "path": "feedback/jubao",
  1210. "style": {
  1211. "navigationBarTitleText": "举报",
  1212. "enablePullDownRefresh": false
  1213. // #ifdef H5
  1214. ,
  1215. "navigationStyle": "custom"
  1216. // #endif
  1217. }
  1218. },
  1219. {
  1220. "path": "jilu/jilu",
  1221. "style": {
  1222. "navigationBarTitleText": "面试记录",
  1223. "enablePullDownRefresh": false
  1224. // #ifdef H5
  1225. ,
  1226. "navigationStyle": "custom"
  1227. // #endif
  1228. }
  1229. },
  1230. {
  1231. "path": "jilu/jilu",
  1232. "style": {
  1233. "navigationBarTitleText": "面试记录",
  1234. "enablePullDownRefresh": false
  1235. // #ifdef H5
  1236. ,
  1237. "navigationStyle": "custom"
  1238. // #endif
  1239. }
  1240. },
  1241. {
  1242. "path": "jilu/mianshiDetail",
  1243. "style": {
  1244. "navigationBarTitleText": "面试详情",
  1245. "enablePullDownRefresh": false
  1246. // #ifdef H5
  1247. ,
  1248. "navigationStyle": "custom"
  1249. // #endif
  1250. }
  1251. }
  1252. // #ifdef APP || H5
  1253. ,
  1254. {
  1255. "path": "videoVoice/videoVoice",
  1256. "style": {
  1257. "navigationBarTitleText": "",
  1258. "navigationStyle": "custom"
  1259. }
  1260. }
  1261. // #endif
  1262. ]
  1263. }
  1264. ],
  1265. "globalStyle": {
  1266. "navigationBarTextStyle": "black",
  1267. "navigationBarTitleText": "省钱兄招聘",
  1268. "navigationBarBackgroundColor": "#FFFFFF",
  1269. "backgroundColor": "#ffffff"
  1270. },
  1271. "tabBar": {
  1272. "color": "#9CA4AB",
  1273. "selectedColor": "#0D27F7",
  1274. "backgroundColor": "#FFFFFF",
  1275. "borderStyle": "black",
  1276. "list": [
  1277. {
  1278. "pagePath": "pages/index/index",
  1279. "iconPath": "static/tabbar/Home.svg",
  1280. "selectedIconPath": "static/tabbar/Iconly_Bold_Home.svg",
  1281. "text": "首页"
  1282. },
  1283. {
  1284. "pagePath": "pages/index/game/gameList",
  1285. "iconPath": "static/tabbar/jipin.svg",
  1286. "selectedIconPath": "static/tabbar/ACjipin.svg",
  1287. "text": "急聘"
  1288. },
  1289. {
  1290. "pagePath": "pages/msg/index",
  1291. "iconPath": "static/tabbar/Chat.svg",
  1292. "selectedIconPath": "static/tabbar/ACchat.svg",
  1293. "text": "消息中心"
  1294. },
  1295. {
  1296. "pagePath": "pages/my/index",
  1297. "iconPath": "static/tabbar/Profile.svg",
  1298. "selectedIconPath": "static/tabbar/Iconly_Bulk_Profile.svg",
  1299. "text": "个人中心"
  1300. }
  1301. ]
  1302. },
  1303. "condition": { //模式配置,仅开发期间生效
  1304. "current": 0, //当前激活的模式(list 的索引项)
  1305. "list": [
  1306. {
  1307. "name": "首页", //模式名称
  1308. "path": "pages/index/index", //启动页面,必选
  1309. "query": "" //启动参数,在页面的onLoad函数里面得到
  1310. }
  1311. ]
  1312. }
  1313. }