pages.json 32 KB

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