pages.json 31 KB

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