pages.json 27 KB

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