pages.json 35 KB

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