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/index/index",
  8. "style": {
  9. "navigationBarTitleText": "首页",
  10. // "navigationBarBackgroundColor": "#E5EEFF",
  11. "navigationBarBackgroundColor": "#00DD9A",
  12. "navigationBarTextStyle": "white",
  13. "enablePullDownRefresh": true,
  14. "navigationStyle": "custom"
  15. }
  16. },
  17. {
  18. "path": "pages/my/switchRoles",
  19. "style": {
  20. "navigationBarTitleText": "切换身份",
  21. "navigationStyle": "custom"
  22. }
  23. },
  24. {
  25. "path": "pages/my/businessLicense",
  26. "style": {
  27. "navigationBarTitleText": "营业执照",
  28. "navigationStyle": "custom"
  29. }
  30. },
  31. {
  32. "path": "pages/my/peopleNumber",
  33. "style": {
  34. "navigationBarTitleText": "选择公司规模",
  35. "navigationStyle": "custom"
  36. }
  37. },
  38. {
  39. "path": "pages/my/jobPosting",
  40. "style": {
  41. "navigationBarTitleText": "发布职位",
  42. "navigationStyle": "custom"
  43. }
  44. },
  45. {
  46. "path": "pages/my/jobPostingSecond",
  47. "style": {
  48. "navigationBarTitleText": "发布职位",
  49. "navigationStyle": "custom"
  50. }
  51. },
  52. {
  53. "path": "pages/index/search/index",
  54. "style": {
  55. "navigationBarTitleText": "搜索",
  56. "app-plus": {
  57. "titleNView": true
  58. },
  59. "navigationStyle": "custom"
  60. }
  61. },
  62. {
  63. "path": "pages/my/jobApplicant/loginInput",
  64. "style": {
  65. "navigationBarTitleText": "登录",
  66. "navigationStyle": "custom"
  67. }
  68. },
  69. {
  70. "path": "pages/my/jobApplicant/guidePage",
  71. "style": {
  72. "navigationBarTitleText": "启动页",
  73. "navigationStyle": "custom"
  74. }
  75. },
  76. {
  77. "path": "pages/my/jobApplicant/register",
  78. "style": {
  79. "navigationBarTitleText": "注册",
  80. "navigationStyle": "custom"
  81. }
  82. },
  83. {
  84. "path": "pages/my/jobApplicant/registerSuccess",
  85. "style": {
  86. "navigationBarTitleText": "注册成功",
  87. "navigationStyle": "custom"
  88. }
  89. },
  90. {
  91. "path": "pages/my/jobApplicant/password",
  92. "style": {
  93. "navigationBarTitleText": "创建账号密码",
  94. "navigationStyle": "custom"
  95. }
  96. },
  97. {
  98. "path": "pages/my/jobApplicant/login",
  99. "style": {
  100. "navigationBarTitleText": "登录",
  101. "navigationStyle": "custom"
  102. }
  103. },
  104. {
  105. "path": "pages/my/jobApplicant/startPage",
  106. "style": {
  107. "navigationBarTitleText": "开始页面",
  108. "navigationStyle": "custom"
  109. }
  110. },
  111. {
  112. "path": "pages/my/jobApplicant/welcomePage",
  113. "style": {
  114. "navigationBarTitleText": "指导页",
  115. "navigationStyle": "custom"
  116. }
  117. },
  118. {
  119. "path": "pages/my/jobApplicant/workProgress",
  120. "style": {
  121. "navigationBarTitleText": "工作经历",
  122. "navigationStyle": "custom"
  123. }
  124. },
  125. {
  126. "path": "pages/my/jobApplicant/workRecord",
  127. "style": {
  128. "navigationBarTitleText": "工作经历",
  129. "navigationStyle": "custom"
  130. }
  131. },
  132. {
  133. "path": "pages/index/game/gameList",
  134. "style": {
  135. "navigationBarTitleText": "人才库",
  136. "enablePullDownRefresh": true,
  137. "navigationStyle": "custom"
  138. }
  139. },
  140. {
  141. "path": "pages/index/game/order",
  142. "style": {
  143. "navigationBarTitleText": "岗位详情",
  144. "navigationStyle": "custom"
  145. }
  146. },
  147. {
  148. "path": "pages/index/game/orderDet",
  149. "style": {
  150. "navigationBarTitleText": "简历详情",
  151. "navigationStyle": "custom"
  152. }
  153. },
  154. {
  155. "path": "pages/index/citys/citys",
  156. "style": {
  157. "navigationBarTitleText": "城市",
  158. "navigationStyle": "custom"
  159. }
  160. },
  161. {
  162. "path": "pages/index/citySelect",
  163. "style": {
  164. "navigationBarTitleText": "城市选择",
  165. "navigationStyle": "custom"
  166. }
  167. },
  168. {
  169. "path": "pages/index/jobSearch",
  170. "style": {
  171. "navigationBarTitleText": "职位搜索",
  172. "navigationStyle": "custom"
  173. }
  174. },
  175. {
  176. "path": "pages/jobManagement/jobManagement",
  177. "style": {
  178. "navigationBarTitleText": "职位管理",
  179. "navigationStyle": "custom"
  180. }
  181. },
  182. {
  183. "path": "pages/jobManagement/jobDetail",
  184. "style": {
  185. "navigationBarTitleText": "职位详情",
  186. "navigationStyle": "custom"
  187. }
  188. },
  189. {
  190. "path": "pages/talentSearch/index",
  191. "style": {
  192. "navigationBarTitleText": "搜索",
  193. "navigationStyle": "custom"
  194. }
  195. },
  196. {
  197. "path": "pages/talentSearch/filter",
  198. "style": {
  199. "navigationBarTitleText": "筛选",
  200. "navigationStyle": "custom"
  201. }
  202. },
  203. {
  204. "path": "pages/index/webView",
  205. "style": {
  206. "navigationBarTitleText": "网页",
  207. "navigationStyle": "custom"
  208. }
  209. },
  210. {
  211. "path": "pages/msg/index",
  212. "style": {
  213. "navigationBarTitleText": "消息",
  214. "enablePullDownRefresh": true,
  215. "navigationStyle": "custom"
  216. }
  217. },
  218. {
  219. "path": "pages/msg/im",
  220. "style": {
  221. "navigationBarTitleText": "",
  222. "navigationStyle": "custom"
  223. }
  224. },
  225. {
  226. "path": "pages/msg/message",
  227. "style": {
  228. "navigationBarTitleText": "系统消息",
  229. "enablePullDownRefresh": true,
  230. "navigationStyle": "custom"
  231. }
  232. },
  233. {
  234. "path": "pages/my/index",
  235. "style": {
  236. "navigationBarTitleText": "我的",
  237. // "navigationBarBackgroundColor": "#E5EEFF"
  238. "navigationBarBackgroundColor": "#D9FEED",
  239. "navigationStyle": "custom"
  240. }
  241. },
  242. {
  243. "path": "pages/my/onlineResume",
  244. "style": {
  245. "navigationBarTitleText": "在线简历",
  246. "navigationStyle": "custom"
  247. }
  248. },
  249. {
  250. "path": "pages/my/personalCenter",
  251. "style": {
  252. "navigationBarTitleText": "个人中心",
  253. "navigationStyle": "custom"
  254. }
  255. },
  256. {
  257. "path": "pages/my/workExperience",
  258. "style": {
  259. "navigationBarTitleText": "工作经历",
  260. "navigationStyle": "custom"
  261. }
  262. },
  263. {
  264. "path": "pages/my/invitationUser",
  265. "style": {
  266. "navigationBarTitleText": "邀请好友",
  267. "navigationBarBackgroundColor": "#E5EEFF",
  268. "enablePullDownRefresh": false,
  269. "app-plus": {
  270. "bounce": "none",
  271. "scrollIndicator": "none",
  272. "titleNView": true
  273. },
  274. "navigationStyle": "custom"
  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. "navigationStyle": "custom"
  289. }
  290. },
  291. {
  292. "path": "pages/my/userinfo",
  293. "style": {
  294. "navigationBarTitleText": "个人信息",
  295. "navigationStyle": "custom"
  296. }
  297. },
  298. {
  299. "path": "pages/my/ruleCenter",
  300. "style": {
  301. "navigationBarTitleText": "规则中心",
  302. "navigationStyle": "custom"
  303. }
  304. },
  305. {
  306. "path": "pages/public/login",
  307. "style": {
  308. "navigationBarTitleText": "登录",
  309. "navigationStyle": "custom"
  310. }
  311. },
  312. {
  313. "path": "pages/public/bind",
  314. "style": {
  315. "navigationBarTitleText": "绑定手机号",
  316. "navigationStyle": "custom"
  317. }
  318. },
  319. {
  320. "path": "pages/public/forgetPwd",
  321. "style": {
  322. "navigationBarTitleText": "重置密码",
  323. "navigationStyle": "custom"
  324. }
  325. },
  326. {
  327. "path": "pages/public/loginphone",
  328. "style": {
  329. "navigationBarTitleText": "登录",
  330. "navigationStyle": "custom"
  331. }
  332. },
  333. {
  334. "path": "pages/public/pwd",
  335. "style": {
  336. "navigationBarTitleText": "修改密码",
  337. "navigationStyle": "custom"
  338. }
  339. },
  340. {
  341. "path": "pages/public/register",
  342. "style": {
  343. "navigationBarTitleText": "注册",
  344. "navigationStyle": "custom"
  345. }
  346. },
  347. {
  348. "path": "pages/index/game/tuiList",
  349. "style": {
  350. "navigationBarTitleText": "推送列表",
  351. "enablePullDownRefresh": false,
  352. "navigationStyle": "custom"
  353. }
  354. },
  355. {
  356. "path": "pages/msg/addmsg",
  357. "style": {
  358. "navigationBarTitleText": "常用语",
  359. "enablePullDownRefresh": false,
  360. "navigationStyle": "custom"
  361. }
  362. },
  363. {
  364. "path": "pages/msg/chathistory",
  365. "style": {
  366. "navigationBarTitleText": "聊天记录",
  367. "enablePullDownRefresh": false,
  368. "navigationStyle": "custom"
  369. }
  370. },
  371. {
  372. "path": "pages/msg/add",
  373. "style": {
  374. "navigationBarTitleText": "新增",
  375. "enablePullDownRefresh": false,
  376. "navigationStyle": "custom"
  377. }
  378. },
  379. {
  380. "path": "pages/msg/regular",
  381. "style": {
  382. "navigationBarTitleText": "常用语",
  383. "enablePullDownRefresh": false,
  384. "navigationStyle": "custom"
  385. }
  386. },
  387. {
  388. "path": "pages/msg/search",
  389. "style": {
  390. "navigationBarTitleText": "消息搜索",
  391. "enablePullDownRefresh": true,
  392. "navigationStyle": "custom"
  393. }
  394. },
  395. {
  396. "path": "pages/public/selectIdentity/selectIdentity",
  397. "style": {
  398. "navigationBarTitleText": "选择身份",
  399. "enablePullDownRefresh": false,
  400. "navigationStyle": "custom"
  401. }
  402. }
  403. ],
  404. "subPackages": [
  405. {
  406. "root": "package",
  407. "pages": [
  408. {
  409. "path": "list/hezuo",
  410. "style": {
  411. "navigationBarTitleText": "企业合作",
  412. "navigationStyle": "custom"
  413. // "enablePullDownRefresh": true
  414. }
  415. },
  416. {
  417. "path": "list/index",
  418. "style": {
  419. "navigationBarTitleText": "项目查询",
  420. "enablePullDownRefresh": true,
  421. "navigationStyle": "custom"
  422. }
  423. },
  424. {
  425. "path": "list/studyUp",
  426. "style": {
  427. "navigationBarTitleText": "学历提升",
  428. "enablePullDownRefresh": false,
  429. "navigationStyle": "custom"
  430. }
  431. },
  432. {
  433. "path": "list/train",
  434. "style": {
  435. "navigationBarTitleText": "证书培训",
  436. "enablePullDownRefresh": false,
  437. "navigationStyle": "custom"
  438. }
  439. },
  440. {
  441. "path": "list/zhiCheng",
  442. "style": {
  443. "navigationBarTitleText": "职称评审",
  444. "enablePullDownRefresh": false,
  445. "navigationStyle": "custom"
  446. }
  447. },
  448. {
  449. "path": "list/baoming",
  450. "style": {
  451. "navigationBarTitleText": "培训报名",
  452. "enablePullDownRefresh": false,
  453. "navigationStyle": "custom"
  454. }
  455. },
  456. //个人
  457. {
  458. "path": "my/resume",
  459. "style": {
  460. "navigationBarTitleText": "我的简历",
  461. "enablePullDownRefresh": true,
  462. "navigationStyle": "custom"
  463. }
  464. },
  465. {
  466. "path": "my/apply",
  467. "style": {
  468. "navigationBarTitleText": "我的报名",
  469. "enablePullDownRefresh": true,
  470. "navigationStyle": "custom"
  471. }
  472. },
  473. {
  474. "path": "my/applyType",
  475. "style": {
  476. "navigationBarTitleText": "",
  477. "enablePullDownRefresh": false,
  478. "navigationStyle": "custom"
  479. }
  480. },
  481. {
  482. "path": "my/pingbi",
  483. "style": {
  484. "navigationBarTitleText": "",
  485. "enablePullDownRefresh": false,
  486. "navigationStyle": "custom"
  487. }
  488. },
  489. {
  490. "path": "list/fuli",
  491. "style": {
  492. "navigationBarTitleText": "福利查询",
  493. "enablePullDownRefresh": false,
  494. "navigationStyle": "custom"
  495. }
  496. },
  497. {
  498. "path": "jobIntention/jobIntention",
  499. "style": {
  500. "navigationBarTitleText": "管理求职意向",
  501. "enablePullDownRefresh": false,
  502. "navigationStyle": "custom"
  503. }
  504. },
  505. {
  506. "path": "jobIntention/add",
  507. "style": {
  508. "navigationBarTitleText": "求职意向",
  509. "enablePullDownRefresh": false,
  510. "navigationStyle": "custom"
  511. }
  512. },
  513. {
  514. "path": "jobIntention/editJob",
  515. "style": {
  516. "navigationBarTitleText": "岗位描述",
  517. "enablePullDownRefresh": false,
  518. "navigationStyle": "custom"
  519. }
  520. },
  521. {
  522. "path": "jobIntention/edit",
  523. "style": {
  524. "navigationBarTitleText": "求职意向",
  525. "enablePullDownRefresh": false,
  526. "navigationStyle": "custom"
  527. }
  528. },
  529. {
  530. "path": "jobIntention/jobList",
  531. "style": {
  532. "navigationBarTitleText": "岗位分类",
  533. "enablePullDownRefresh": false,
  534. "navigationStyle": "custom"
  535. }
  536. },
  537. {
  538. "path": "jobIntention/industry",
  539. "style": {
  540. "navigationBarTitleText": "期望行业",
  541. "enablePullDownRefresh": false,
  542. "navigationStyle": "custom"
  543. }
  544. },
  545. {
  546. "path": "jobIntention/city",
  547. "style": {
  548. "navigationBarTitleText": "工作地址",
  549. "enablePullDownRefresh": false,
  550. "navigationStyle": "custom"
  551. }
  552. },
  553. {
  554. "path": "jobIntention/company",
  555. "style": {
  556. "navigationBarTitleText": "公司认证",
  557. "enablePullDownRefresh": false,
  558. "navigationStyle": "custom"
  559. }
  560. },
  561. {
  562. "path": "jobIntention/companyImg",
  563. "style": {
  564. "navigationBarTitleText": "公司认证",
  565. "enablePullDownRefresh": false,
  566. "navigationStyle": "custom"
  567. }
  568. },
  569. {
  570. "path": "jobIntention/underReview",
  571. "style": {
  572. "navigationBarTitleText": "审核中",
  573. "enablePullDownRefresh": false,
  574. "navigationStyle": "custom"
  575. }
  576. },
  577. {
  578. "path": "jobIntention/completeMsg",
  579. "style": {
  580. "navigationBarTitleText": "完善信息",
  581. "enablePullDownRefresh": false,
  582. "navigationStyle": "custom"
  583. }
  584. },
  585. {
  586. "path": "jobIntention/companyReview",
  587. "style": {
  588. "navigationBarTitleText": "企业环境认证",
  589. "enablePullDownRefresh": false,
  590. "navigationStyle": "custom"
  591. }
  592. },
  593. {
  594. "path": "jobIntention/companyMsg",
  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. }