pages.json 32 KB

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