pages.json 29 KB

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