pages.json 32 KB

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