pages.json 27 KB

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