pages.json 25 KB

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