pages.json 29 KB

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