pages.json 23 KB

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