pages.json 25 KB

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