pages.json 25 KB

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