pages.json 25 KB

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