pages.json 30 KB

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