pages.json 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572
  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/public/loginV2",
  8. "style": {
  9. "navigationStyle": "custom"
  10. }
  11. },
  12. {
  13. "path": "pages/index/index",
  14. "style": {
  15. "navigationBarTitleText": "首页",
  16. // "navigationBarBackgroundColor": "#E5EEFF",
  17. "navigationBarBackgroundColor": "#00DD9A",
  18. "navigationBarTextStyle": "white",
  19. "enablePullDownRefresh": false,
  20. "navigationStyle": "custom"
  21. }
  22. },
  23. {
  24. "path": "pages/my/switchRoles",
  25. "style": {
  26. "navigationBarTitleText": "切换身份",
  27. "navigationStyle": "custom"
  28. }
  29. },
  30. {
  31. "path": "pages/my/businessLicense",
  32. "style": {
  33. "navigationBarTitleText": "营业执照",
  34. "navigationStyle": "custom"
  35. }
  36. },
  37. {
  38. "path": "pages/my/peopleNumber",
  39. "style": {
  40. "navigationBarTitleText": "选择公司规模",
  41. "navigationStyle": "custom"
  42. }
  43. },
  44. {
  45. "path": "pages/my/jobPosting",
  46. "style": {
  47. "navigationBarTitleText": "发布职位",
  48. "navigationStyle": "custom"
  49. }
  50. },
  51. {
  52. "path": "pages/my/headhunter",
  53. "style": {
  54. "navigationBarTitleText": "猎头服务",
  55. "navigationStyle": "custom"
  56. }
  57. },
  58. {
  59. "path": "pages/my/jobPostingSecond",
  60. "style": {
  61. "navigationBarTitleText": "发布职位",
  62. "navigationStyle": "custom"
  63. }
  64. },
  65. {
  66. "path": "pages/index/search/index",
  67. "style": {
  68. "navigationBarTitleText": "搜索",
  69. "app-plus": {
  70. "titleNView": true
  71. },
  72. "navigationStyle": "custom"
  73. }
  74. },
  75. {
  76. "path": "pages/my/jobApplicant/loginInput",
  77. "style": {
  78. "navigationBarTitleText": "登录",
  79. "navigationStyle": "custom"
  80. }
  81. },
  82. {
  83. "path": "pages/my/jobApplicant/guidePage",
  84. "style": {
  85. "navigationBarTitleText": "启动页",
  86. "navigationStyle": "custom"
  87. }
  88. },
  89. {
  90. "path": "pages/my/jobApplicant/register",
  91. "style": {
  92. "navigationBarTitleText": "注册",
  93. "navigationStyle": "custom"
  94. }
  95. },
  96. {
  97. "path": "pages/my/jobApplicant/registerSuccess",
  98. "style": {
  99. "navigationBarTitleText": "注册成功",
  100. "navigationStyle": "custom"
  101. }
  102. },
  103. {
  104. "path": "pages/my/jobApplicant/password",
  105. "style": {
  106. "navigationBarTitleText": "创建账号密码",
  107. "navigationStyle": "custom"
  108. }
  109. },
  110. {
  111. "path": "pages/my/jobApplicant/login",
  112. "style": {
  113. "navigationBarTitleText": "登录",
  114. "navigationStyle": "custom"
  115. }
  116. },
  117. {
  118. "path": "pages/my/jobApplicant/startPage",
  119. "style": {
  120. "navigationBarTitleText": "开始页面",
  121. "navigationStyle": "custom"
  122. }
  123. },
  124. {
  125. "path": "pages/my/jobApplicant/welcomePage",
  126. "style": {
  127. "navigationBarTitleText": "指导页",
  128. "navigationStyle": "custom"
  129. }
  130. },
  131. {
  132. "path": "pages/my/jobApplicant/workProgress",
  133. "style": {
  134. "navigationBarTitleText": "工作经历",
  135. "navigationStyle": "custom"
  136. }
  137. },
  138. {
  139. "path": "pages/my/jobApplicant/workRecord",
  140. "style": {
  141. "navigationBarTitleText": "工作经历",
  142. "navigationStyle": "custom"
  143. }
  144. },
  145. {
  146. "path": "pages/index/game/gameList",
  147. "style": {
  148. "navigationBarTitleText": "人才库",
  149. "enablePullDownRefresh": false,
  150. "navigationStyle": "custom"
  151. }
  152. },
  153. {
  154. "path": "pages/index/game/order",
  155. "style": {
  156. "navigationBarTitleText": "岗位详情",
  157. "navigationStyle": "custom"
  158. }
  159. },
  160. {
  161. "path": "pages/index/game/orderDet",
  162. "style": {
  163. "navigationBarTitleText": "简历详情",
  164. "navigationStyle": "custom"
  165. }
  166. },
  167. {
  168. "path": "pages/index/citys/citys",
  169. "style": {
  170. "navigationBarTitleText": "城市",
  171. "navigationStyle": "custom"
  172. }
  173. },
  174. {
  175. "path": "pages/index/citySelect",
  176. "style": {
  177. "navigationBarTitleText": "城市选择",
  178. "navigationStyle": "custom"
  179. }
  180. },
  181. {
  182. "path": "pages/index/jobSearch",
  183. "style": {
  184. "navigationBarTitleText": "职位搜索",
  185. "navigationStyle": "custom"
  186. }
  187. },
  188. {
  189. "path": "pages/jobManagement/jobManagement",
  190. "style": {
  191. "navigationBarTitleText": "职位管理",
  192. "navigationStyle": "custom",
  193. "disableSwipeBack": true
  194. }
  195. },
  196. {
  197. "path": "pages/jobManagement/jobDetail",
  198. "style": {
  199. "navigationBarTitleText": "职位详情",
  200. "navigationStyle": "custom"
  201. }
  202. },
  203. {
  204. "path": "pages/talentSearch/index",
  205. "style": {
  206. "navigationBarTitleText": "搜索",
  207. "navigationStyle": "custom"
  208. }
  209. },
  210. {
  211. "path": "pages/talentSearch/filter",
  212. "style": {
  213. "navigationBarTitleText": "筛选",
  214. "navigationStyle": "custom"
  215. }
  216. },
  217. {
  218. "path": "pages/talentSearch/resumeDetail",
  219. "style": {
  220. "navigationBarTitleText": "简历详情",
  221. "navigationStyle": "custom"
  222. }
  223. },
  224. {
  225. "path": "pages/index/webView",
  226. "style": {
  227. "navigationBarTitleText": "网页",
  228. "navigationStyle": "custom"
  229. }
  230. },
  231. {
  232. "path": "pages/msg/index",
  233. "style": {
  234. "navigationBarTitleText": "消息",
  235. // "enablePullDownRefresh": true,
  236. "navigationStyle": "custom"
  237. }
  238. },
  239. {
  240. "path": "pages/msg/im",
  241. "style": {
  242. "navigationBarTitleText": "",
  243. "navigationStyle": "custom",
  244. "app-plus": {
  245. "softinputMode": "adjustResize"
  246. }
  247. }
  248. },
  249. {
  250. "path": "pages/msg/message",
  251. "style": {
  252. "navigationBarTitleText": "系统消息",
  253. "enablePullDownRefresh": true,
  254. "navigationStyle": "custom"
  255. }
  256. },
  257. {
  258. "path": "pages/my/index",
  259. "style": {
  260. "navigationBarTitleText": "我的",
  261. // "navigationBarBackgroundColor": "#E5EEFF"
  262. "navigationBarBackgroundColor": "#D9FEED",
  263. "navigationStyle": "custom"
  264. }
  265. },
  266. {
  267. "path": "pages/my/VIP/benefits",
  268. "style": {
  269. "navigationBarTitleText": "我的权益",
  270. "navigationBarTextStyle": "black",
  271. "navigationStyle": "custom"
  272. }
  273. },
  274. {
  275. "path": "pages/my/userphone",
  276. "style": {
  277. "navigationBarTitleText": "修改手机号",
  278. "navigationStyle": "custom"
  279. }
  280. },
  281. {
  282. "path": "pages/my/myCompany",
  283. "style": {
  284. "navigationBarTitleText": "我的公司",
  285. "navigationStyle": "custom"
  286. }
  287. },
  288. {
  289. "path": "pages/my/changeCompanies",
  290. "style": {
  291. "navigationBarTitleText": "更换公司",
  292. "navigationStyle": "custom"
  293. }
  294. },
  295. {
  296. "path": "pages/my/changePosition",
  297. "style": {
  298. "navigationBarTitleText": "更换职务",
  299. "navigationStyle": "custom"
  300. }
  301. },
  302. {
  303. "path": "pages/my/onlineResume",
  304. "style": {
  305. "navigationBarTitleText": "在线简历",
  306. "navigationStyle": "custom"
  307. }
  308. },
  309. {
  310. "path": "pages/my/personalCenter",
  311. "style": {
  312. "navigationBarTitleText": "个人中心",
  313. "navigationStyle": "custom"
  314. }
  315. },
  316. {
  317. "path": "pages/my/workExperience",
  318. "style": {
  319. "navigationBarTitleText": "工作经历",
  320. "navigationStyle": "custom"
  321. }
  322. },
  323. {
  324. "path": "pages/my/educationExperience",
  325. "style": {
  326. "navigationBarTitleText": "教育经历",
  327. "navigationStyle": "custom"
  328. }
  329. },
  330. {
  331. "path": "pages/my/invitationUser",
  332. "style": {
  333. "navigationBarTitleText": "邀请好友",
  334. "navigationBarBackgroundColor": "#E5EEFF",
  335. "enablePullDownRefresh": false,
  336. "app-plus": {
  337. "bounce": "none",
  338. "scrollIndicator": "none",
  339. "titleNView": true
  340. },
  341. "navigationStyle": "custom"
  342. }
  343. },
  344. {
  345. "path": "pages/my/invitationUserqy",
  346. "style": {
  347. "navigationBarTitleText": "邀请好友",
  348. "navigationBarBackgroundColor": "#E5EEFF",
  349. "enablePullDownRefresh": false,
  350. "app-plus": {
  351. "bounce": "none",
  352. "scrollIndicator": "none",
  353. "titleNView": true
  354. },
  355. "navigationStyle": "custom"
  356. }
  357. },
  358. {
  359. "path": "pages/my/userinfo",
  360. "style": {
  361. "navigationBarTitleText": "个人信息",
  362. "navigationStyle": "custom"
  363. }
  364. },
  365. {
  366. "path": "pages/my/setup",
  367. "style": {
  368. "navigationBarTitleText": "设置",
  369. "navigationStyle": "custom"
  370. }
  371. },
  372. {
  373. "path": "pages/index/download",
  374. "style": {
  375. "navigationBarTitleText": "下载",
  376. "navigationStyle": "custom"
  377. }
  378. },
  379. {
  380. "path": "pages/my/attachment",
  381. "style": {
  382. "navigationBarTitleText": "管理附件",
  383. "navigationStyle": "custom"
  384. }
  385. },
  386. {
  387. "path": "pages/my/resumeUpload",
  388. "style": {
  389. "navigationBarTitleText": "附件简历",
  390. "navigationStyle": "custom"
  391. }
  392. },
  393. {
  394. "path": "pages/my/ad",
  395. "style": {
  396. "navigationBarTitleText": "营销",
  397. "navigationStyle": "custom"
  398. }
  399. },
  400. {
  401. "path": "pages/my/ruleCenter",
  402. "style": {
  403. "navigationBarTitleText": "规则中心",
  404. "navigationStyle": "custom"
  405. }
  406. },
  407. {
  408. "path": "pages/public/login",
  409. "style": {
  410. "navigationBarTitleText": "登录",
  411. "navigationStyle": "custom"
  412. }
  413. },
  414. {
  415. "path": "pages/public/bind",
  416. "style": {
  417. "navigationBarTitleText": "绑定手机号",
  418. "navigationStyle": "custom"
  419. }
  420. },
  421. {
  422. "path": "pages/public/forgetPwd",
  423. "style": {
  424. "navigationBarTitleText": "重置密码",
  425. "navigationStyle": "custom"
  426. }
  427. },
  428. {
  429. "path": "pages/public/loginphone",
  430. "style": {
  431. "navigationBarTitleText": "登录",
  432. "navigationStyle": "custom"
  433. }
  434. },
  435. {
  436. "path": "pages/public/pwd",
  437. "style": {
  438. "navigationBarTitleText": "修改密码",
  439. "navigationStyle": "custom"
  440. }
  441. },
  442. {
  443. "path": "pages/public/register",
  444. "style": {
  445. "navigationBarTitleText": "注册",
  446. "navigationStyle": "custom"
  447. }
  448. },
  449. {
  450. "path": "pages/index/game/tuiList",
  451. "style": {
  452. "navigationBarTitleText": "推送列表",
  453. "enablePullDownRefresh": false,
  454. "navigationStyle": "custom"
  455. }
  456. },
  457. {
  458. "path": "pages/msg/addmsg",
  459. "style": {
  460. "navigationBarTitleText": "常用语",
  461. "enablePullDownRefresh": false,
  462. "navigationStyle": "custom"
  463. }
  464. },
  465. {
  466. "path": "pages/msg/chathistory",
  467. "style": {
  468. "navigationBarTitleText": "聊天记录",
  469. "enablePullDownRefresh": false,
  470. "navigationStyle": "custom"
  471. }
  472. },
  473. {
  474. "path": "pages/msg/add",
  475. "style": {
  476. "navigationBarTitleText": "新增",
  477. "enablePullDownRefresh": false,
  478. "navigationStyle": "custom"
  479. }
  480. },
  481. {
  482. "path": "pages/msg/regular",
  483. "style": {
  484. "navigationBarTitleText": "常用语",
  485. "enablePullDownRefresh": false,
  486. "navigationStyle": "custom"
  487. }
  488. },
  489. {
  490. "path": "pages/msg/search",
  491. "style": {
  492. "navigationBarTitleText": "消息搜索",
  493. "enablePullDownRefresh": true,
  494. "navigationStyle": "custom"
  495. }
  496. },
  497. {
  498. "path": "pages/public/selectIdentity/selectIdentity",
  499. "style": {
  500. "navigationBarTitleText": "选择身份",
  501. "enablePullDownRefresh": false,
  502. "navigationStyle": "custom"
  503. }
  504. },
  505. {
  506. "path": "pages/recruitmentData/index",
  507. "style": {
  508. "navigationBarTitleText": "招聘数据",
  509. "enablePullDownRefresh": false,
  510. "navigationStyle": "custom"
  511. }
  512. },
  513. {
  514. "path": "pages/recruitmentData/dataCenter",
  515. "style": {
  516. "navigationBarTitleText": "招聘数据中心",
  517. "enablePullDownRefresh": false,
  518. "navigationStyle": "custom"
  519. }
  520. },
  521. {
  522. "path": "pages/recruitmentData/communicationRecords",
  523. "style": {
  524. "navigationBarTitleText": "沟通记录",
  525. "enablePullDownRefresh": false,
  526. "navigationStyle": "custom"
  527. }
  528. },
  529. {
  530. "path": "pages/recruitmentData/interviewManage",
  531. "style": {
  532. "navigationBarTitleText": "面试管理",
  533. "enablePullDownRefresh": false,
  534. "navigationStyle": "custom"
  535. }
  536. },
  537. {
  538. "path": "pages/msg/interviewInvitation",
  539. "style": {
  540. "navigationBarTitleText": "面试邀约",
  541. "enablePullDownRefresh": false,
  542. "navigationStyle": "custom"
  543. }
  544. },
  545. {
  546. "path": "pages/msg/selectInterview",
  547. "style": {
  548. "navigationBarTitleText": "面试地址",
  549. "enablePullDownRefresh": false,
  550. "navigationStyle": "custom"
  551. }
  552. },
  553. {
  554. "path": "pages/public/invite/index",
  555. "style": {
  556. "navigationBarTitleText": "邀请",
  557. "navigationStyle": "custom"
  558. }
  559. },
  560. {
  561. "path": "pages/public/improvePrompt",
  562. "style": {
  563. "navigationStyle": "custom"
  564. }
  565. },
  566. {
  567. "path": "pages/public/invite/download",
  568. "style": {
  569. "navigationBarTitleText": "下载",
  570. "navigationStyle": "custom"
  571. }
  572. },
  573. {
  574. "path": "pages/public/phoneLoginOrRegister",
  575. "style": {
  576. "navigationBarTitleText": "注册登录",
  577. "navigationStyle": "custom"
  578. }
  579. },
  580. {
  581. "path": "pages/public/verify",
  582. "style": {
  583. "navigationBarTitleText": "验证登录",
  584. "navigationStyle": "custom"
  585. }
  586. },
  587. {
  588. "path": "pages/my/joinCompany",
  589. "style": {
  590. "navigationBarTitleText": "加入公司",
  591. "navigationStyle": "custom"
  592. }
  593. },
  594. {
  595. "path": "pages/my/searchCompanys",
  596. "style": {
  597. "navigationBarTitleText": "搜索公司",
  598. "navigationStyle": "custom"
  599. }
  600. }
  601. ],
  602. "subPackages": [
  603. {
  604. "root": "package",
  605. "pages": [
  606. {
  607. "path": "list/hezuo",
  608. "style": {
  609. "navigationBarTitleText": "企业合作",
  610. "navigationStyle": "custom"
  611. // "enablePullDownRefresh": true
  612. }
  613. },
  614. {
  615. "path": "list/index",
  616. "style": {
  617. "navigationBarTitleText": "项目查询",
  618. "enablePullDownRefresh": true,
  619. "navigationStyle": "custom"
  620. }
  621. },
  622. {
  623. "path": "list/studyUp",
  624. "style": {
  625. "navigationBarTitleText": "学历提升",
  626. "enablePullDownRefresh": false,
  627. "navigationStyle": "custom"
  628. }
  629. },
  630. {
  631. "path": "list/train",
  632. "style": {
  633. "navigationBarTitleText": "证书培训",
  634. "enablePullDownRefresh": false,
  635. "navigationStyle": "custom"
  636. }
  637. },
  638. {
  639. "path": "list/zhiCheng",
  640. "style": {
  641. "navigationBarTitleText": "职称评审",
  642. "enablePullDownRefresh": false,
  643. "navigationStyle": "custom"
  644. }
  645. },
  646. {
  647. "path": "list/baoming",
  648. "style": {
  649. "navigationBarTitleText": "培训报名",
  650. "enablePullDownRefresh": false,
  651. "navigationStyle": "custom"
  652. }
  653. },
  654. //个人
  655. {
  656. "path": "my/resume",
  657. "style": {
  658. "navigationBarTitleText": "我的简历",
  659. "enablePullDownRefresh": true,
  660. "navigationStyle": "custom"
  661. }
  662. },
  663. {
  664. "path": "my/apply",
  665. "style": {
  666. "navigationBarTitleText": "我的报名",
  667. "enablePullDownRefresh": true,
  668. "navigationStyle": "custom"
  669. }
  670. },
  671. {
  672. "path": "my/applyType",
  673. "style": {
  674. "navigationBarTitleText": "",
  675. "enablePullDownRefresh": false,
  676. "navigationStyle": "custom"
  677. }
  678. },
  679. {
  680. "path": "my/pingbi",
  681. "style": {
  682. "navigationBarTitleText": "",
  683. "enablePullDownRefresh": false,
  684. "navigationStyle": "custom"
  685. }
  686. },
  687. {
  688. "path": "list/fuli",
  689. "style": {
  690. "navigationBarTitleText": "福利查询",
  691. "enablePullDownRefresh": false,
  692. "navigationStyle": "custom"
  693. }
  694. },
  695. {
  696. "path": "jobIntention/jobIntention",
  697. "style": {
  698. "navigationBarTitleText": "管理求职意向",
  699. "enablePullDownRefresh": false,
  700. "navigationStyle": "custom"
  701. }
  702. },
  703. {
  704. "path": "jobIntention/add",
  705. "style": {
  706. "navigationBarTitleText": "求职意向",
  707. "enablePullDownRefresh": false,
  708. "navigationStyle": "custom"
  709. }
  710. },
  711. {
  712. "path": "jobIntention/editJob",
  713. "style": {
  714. "navigationBarTitleText": "岗位描述",
  715. "enablePullDownRefresh": false,
  716. "navigationStyle": "custom"
  717. }
  718. },
  719. {
  720. "path": "jobIntention/edit",
  721. "style": {
  722. "navigationBarTitleText": "求职意向",
  723. "enablePullDownRefresh": false,
  724. "navigationStyle": "custom"
  725. }
  726. },
  727. {
  728. "path": "jobIntention/jobList",
  729. "style": {
  730. "navigationBarTitleText": "岗位分类",
  731. "enablePullDownRefresh": false,
  732. "navigationStyle": "custom"
  733. }
  734. },
  735. {
  736. "path": "jobIntention/industry",
  737. "style": {
  738. "navigationBarTitleText": "期望行业",
  739. "enablePullDownRefresh": false,
  740. "navigationStyle": "custom"
  741. }
  742. },
  743. {
  744. "path": "jobIntention/city",
  745. "style": {
  746. "navigationBarTitleText": "工作地址",
  747. "enablePullDownRefresh": false,
  748. "navigationStyle": "custom"
  749. }
  750. },
  751. {
  752. "path": "jobIntention/company",
  753. "style": {
  754. "navigationBarTitleText": "公司认证",
  755. "enablePullDownRefresh": false,
  756. "navigationStyle": "custom"
  757. }
  758. },
  759. {
  760. "path": "jobIntention/companyImg",
  761. "style": {
  762. "navigationBarTitleText": "公司认证",
  763. "enablePullDownRefresh": false,
  764. "navigationStyle": "custom"
  765. }
  766. },
  767. {
  768. "path": "jobIntention/underReview",
  769. "style": {
  770. "navigationBarTitleText": "审核中",
  771. "enablePullDownRefresh": false,
  772. "navigationStyle": "custom"
  773. }
  774. },
  775. {
  776. "path": "jobIntention/completeMsg",
  777. "style": {
  778. "navigationBarTitleText": "完善信息",
  779. "enablePullDownRefresh": false,
  780. "navigationStyle": "custom"
  781. }
  782. },
  783. {
  784. "path": "jobIntention/companyReview",
  785. "style": {
  786. "navigationBarTitleText": "企业环境认证",
  787. "enablePullDownRefresh": false,
  788. "navigationStyle": "custom"
  789. }
  790. },
  791. {
  792. "path": "jobIntention/companyMsg",
  793. "style": {
  794. "navigationBarTitleText": "公司信息",
  795. "enablePullDownRefresh": false,
  796. "navigationStyle": "custom"
  797. }
  798. },
  799. {
  800. "path": "jobIntention/workAddress",
  801. "style": {
  802. "navigationBarTitleText": "工作地址",
  803. "enablePullDownRefresh": false,
  804. "navigationStyle": "custom"
  805. }
  806. },
  807. {
  808. "path": "jobIntention/tagManage",
  809. "style": {
  810. "navigationBarTitleText": "标签管理",
  811. "enablePullDownRefresh": false,
  812. "navigationStyle": "custom"
  813. }
  814. },
  815. {
  816. "path": "jobIntention/addExpectation",
  817. "style": {
  818. "navigationBarTitleText": "添加求职期望",
  819. "enablePullDownRefresh": false,
  820. "navigationStyle": "custom"
  821. }
  822. },
  823. {
  824. "path": "jobIntention/preferenceSetting",
  825. "style": {
  826. "navigationBarTitleText": "跨境职业标签",
  827. "enablePullDownRefresh": false,
  828. "navigationStyle": "custom"
  829. }
  830. },
  831. {
  832. "path": "jobIntention/jobSkills",
  833. "style": {
  834. "navigationBarTitleText": "跨境职业标签",
  835. "enablePullDownRefresh": false,
  836. "navigationStyle": "custom"
  837. }
  838. },
  839. {
  840. "path": "jobIntention/addAddress",
  841. "style": {
  842. "navigationBarTitleText": "添加地址",
  843. "enablePullDownRefresh": false,
  844. "navigationStyle": "custom"
  845. }
  846. },
  847. {
  848. "path": "jobIntention/fund",
  849. "style": {
  850. "navigationBarTitleText": "福利待遇",
  851. "enablePullDownRefresh": false,
  852. "navigationStyle": "custom"
  853. }
  854. },
  855. {
  856. "path": "jobIntention/basicInfo",
  857. "style": {
  858. "navigationBarTitleText": "基本信息",
  859. "enablePullDownRefresh": false,
  860. "navigationStyle": "custom"
  861. }
  862. },
  863. {
  864. "path": "blackList/blackList",
  865. "style": {
  866. "navigationBarTitleText": "黑名单",
  867. "enablePullDownRefresh": true,
  868. "navigationStyle": "custom"
  869. }
  870. },
  871. {
  872. "path": "addJob/addJob",
  873. "style": {
  874. "navigationBarTitleText": "发布招聘",
  875. "enablePullDownRefresh": false,
  876. "navigationStyle": "custom"
  877. }
  878. },
  879. {
  880. "path": "screen/city",
  881. "style": {
  882. "navigationBarTitleText": "城市",
  883. "enablePullDownRefresh": false,
  884. "navigationStyle": "custom"
  885. }
  886. },
  887. {
  888. "path": "screen/screen",
  889. "style": {
  890. "navigationBarTitleText": "筛选",
  891. "enablePullDownRefresh": false,
  892. "navigationStyle": "custom"
  893. }
  894. },
  895. {
  896. "path": "screen/screenComp",
  897. "style": {
  898. "navigationBarTitleText": "筛选",
  899. "enablePullDownRefresh": false,
  900. "navigationStyle": "custom"
  901. }
  902. },
  903. {
  904. "path": "records/records",
  905. "style": {
  906. "navigationBarTitleText": "求职记录",
  907. "enablePullDownRefresh": true,
  908. "navigationStyle": "custom"
  909. }
  910. },
  911. {
  912. "path": "search/search",
  913. "style": {
  914. "navigationBarTitleText": "搜索",
  915. "navigationStyle": "custom"
  916. }
  917. },
  918. {
  919. "path": "deliveryRecord/deliveryRecord",
  920. "style": {
  921. "navigationBarTitleText": "投递记录",
  922. "enablePullDownRefresh": true
  923. }
  924. },
  925. {
  926. "path": "myLove/myLove",
  927. "style": {
  928. "navigationBarTitleText": "我的收藏",
  929. "enablePullDownRefresh": true,
  930. "navigationStyle": "custom"
  931. }
  932. },
  933. {
  934. "path": "my/editUserInfo",
  935. "style": {
  936. "navigationBarTitleText": "个人信息",
  937. "navigationStyle": "custom"
  938. }
  939. },
  940. {
  941. "path": "my/previewResume/index",
  942. "style": {
  943. "navigationBarTitleText": "简历预览",
  944. "navigationStyle": "custom"
  945. }
  946. },
  947. {
  948. "path": "my/hiddenManagement/index",
  949. "style": {
  950. "navigationBarTitleText": "屏蔽管理",
  951. "navigationStyle": "custom"
  952. }
  953. },
  954. {
  955. "path": "my/hiddenManagement/hiddenCompany",
  956. "style": {
  957. "navigationBarTitleText": "屏蔽管理",
  958. "navigationStyle": "custom"
  959. }
  960. },
  961. {
  962. "path": "jobIntention/updateCertificates",
  963. "style": {
  964. "navigationBarTitleText": "资质证书",
  965. "enablePullDownRefresh": false,
  966. "navigationStyle": "custom"
  967. }
  968. },
  969. {
  970. "path": "my/feedback/index",
  971. "style": {
  972. "navigationBarTitleText": "我要留言",
  973. "navigationStyle": "custom"
  974. }
  975. },
  976. {
  977. "path": "my/scan/index",
  978. "style": {
  979. "navigationBarTitleText": "扫码确认",
  980. "navigationStyle": "custom"
  981. }
  982. }
  983. ]
  984. },
  985. {
  986. "root": "my",
  987. "pages": [
  988. {
  989. "path": "wallet/shouyi",
  990. "style": {
  991. "navigationBarTitleText": "收益明细",
  992. "enablePullDownRefresh": true,
  993. "navigationStyle": "custom"
  994. }
  995. },
  996. {
  997. "path": "team/team",
  998. "style": {
  999. "navigationBarTitleText": "我的团队",
  1000. "enablePullDownRefresh": true,
  1001. "navigationStyle": "custom"
  1002. }
  1003. },
  1004. {
  1005. "path": "team/earnings",
  1006. "style": {
  1007. "navigationBarTitleText": "我的收益",
  1008. "enablePullDownRefresh": true,
  1009. "navigationStyle": "custom"
  1010. }
  1011. },
  1012. {
  1013. "path": "gird/guanzhu",
  1014. "style": {
  1015. "navigationBarTitleText": "我的粉丝",
  1016. "enablePullDownRefresh": true,
  1017. "navigationStyle": "custom"
  1018. }
  1019. },
  1020. {
  1021. "path": "gird/visitor",
  1022. "style": {
  1023. "navigationBarTitleText": "最近访客",
  1024. "enablePullDownRefresh": true,
  1025. "navigationStyle": "custom"
  1026. }
  1027. },
  1028. {
  1029. "path": "address/address",
  1030. "style": {
  1031. "navigationBarTitleText": "地址管理",
  1032. "enablePullDownRefresh": true,
  1033. "navigationStyle": "custom"
  1034. }
  1035. },
  1036. {
  1037. "path": "address/Endaddress",
  1038. "style": {
  1039. "navigationBarTitleText": "添加地址",
  1040. "enablePullDownRefresh": true,
  1041. "navigationStyle": "custom"
  1042. }
  1043. },
  1044. {
  1045. "path": "gird/browse",
  1046. "style": {
  1047. "navigationBarTitleText": "浏览历史",
  1048. "enablePullDownRefresh": true,
  1049. "navigationStyle": "custom"
  1050. }
  1051. },
  1052. {
  1053. "path": "renzheng/index",
  1054. "style": {
  1055. "navigationBarTitleText": "企业认证",
  1056. "navigationStyle": "custom"
  1057. }
  1058. },
  1059. {
  1060. "path": "renzheng/editCompany",
  1061. "style": {
  1062. "navigationBarTitleText": "编辑公司信息",
  1063. "navigationStyle": "custom"
  1064. }
  1065. },
  1066. {
  1067. "path": "renzheng/companyMsg",
  1068. "style": {
  1069. "navigationBarTitleText": "公司信息",
  1070. "navigationStyle": "custom"
  1071. }
  1072. },
  1073. {
  1074. "path": "renzheng/companyDev",
  1075. "style": {
  1076. "navigationBarTitleText": "公司信息",
  1077. "navigationStyle": "custom"
  1078. }
  1079. },
  1080. {
  1081. "path": "renzheng/companyFund",
  1082. "style": {
  1083. "navigationBarTitleText": "公司信息",
  1084. "navigationStyle": "custom"
  1085. }
  1086. },
  1087. {
  1088. "path": "renzheng/peopleDev",
  1089. "style": {
  1090. "navigationBarTitleText": "公司信息",
  1091. "navigationStyle": "custom"
  1092. }
  1093. },
  1094. {
  1095. "path": "renzheng/editCompanyDesc",
  1096. "style": {
  1097. "navigationBarTitleText": "公司信息",
  1098. "navigationStyle": "custom"
  1099. }
  1100. },
  1101. {
  1102. "path": "renzheng/companyLogo",
  1103. "style": {
  1104. "navigationBarTitleText": "公司信息",
  1105. "navigationStyle": "custom"
  1106. }
  1107. },
  1108. {
  1109. "path": "renzheng/companyImg",
  1110. "style": {
  1111. "navigationBarTitleText": "公司信息",
  1112. "navigationStyle": "custom"
  1113. }
  1114. },
  1115. {
  1116. "path": "renzheng/mainWorkIntro",
  1117. "style": {
  1118. "navigationBarTitleText": "公司信息",
  1119. "navigationStyle": "custom"
  1120. }
  1121. },
  1122. {
  1123. "path": "renzheng/zhuanrang",
  1124. "style": {
  1125. "navigationBarTitleText": "转让企业",
  1126. "navigationStyle": "custom"
  1127. }
  1128. },
  1129. {
  1130. "path": "vip/index",
  1131. "style": {
  1132. "navigationBarTitleText": "会员中心",
  1133. // "navigationBarBackgroundColor": "#111111",
  1134. "navigationBarTextStyle": "black",
  1135. "navigationStyle": "custom"
  1136. }
  1137. },
  1138. {
  1139. "path": "wallet/wallet",
  1140. "style": {
  1141. "navigationBarTitleText": "我的钻石",
  1142. "navigationBarBackgroundColor": "#00DD9A",
  1143. "enablePullDownRefresh": true,
  1144. "navigationBarTextStyle": "white",
  1145. "navigationStyle": "custom"
  1146. }
  1147. },
  1148. {
  1149. "path": "wallet/tixian",
  1150. "style": {
  1151. "navigationBarTitleText": "提现",
  1152. "navigationStyle": "custom"
  1153. }
  1154. },
  1155. {
  1156. "path": "wallet/index",
  1157. "style": {
  1158. "navigationBarTitleText": "钻石充值",
  1159. "navigationStyle": "custom"
  1160. }
  1161. },
  1162. {
  1163. "path": "wallet/zhifubao",
  1164. "style": {
  1165. "navigationBarTitleText": "提现账号",
  1166. "navigationStyle": "custom"
  1167. }
  1168. },
  1169. {
  1170. "path": "wallet/cashList",
  1171. "style": {
  1172. "navigationBarTitleText": "提现记录",
  1173. "enablePullDownRefresh": true,
  1174. "navigationStyle": "custom"
  1175. }
  1176. },
  1177. {
  1178. "path": "wallet/mymoneydetail",
  1179. "style": {
  1180. "navigationBarTitleText": "钱包明细",
  1181. "enablePullDownRefresh": true,
  1182. "navigationStyle": "custom"
  1183. }
  1184. },
  1185. {
  1186. "path": "order/index",
  1187. "style": {
  1188. "navigationBarTitleText": "我的招聘",
  1189. "navigationStyle": "custom"
  1190. }
  1191. },
  1192. {
  1193. "path": "order/pay",
  1194. "style": {
  1195. "navigationBarTitleText": "岗位详情",
  1196. "navigationStyle": "custom"
  1197. }
  1198. },
  1199. {
  1200. "path": "order/complain",
  1201. "style": {
  1202. "navigationBarTitleText": "投诉",
  1203. "navigationStyle": "custom"
  1204. }
  1205. },
  1206. {
  1207. "path": "publish/resumesPost",
  1208. "style": {
  1209. "navigationBarTitleText": "添加岗位",
  1210. "navigationStyle": "custom"
  1211. }
  1212. },
  1213. {
  1214. "path": "publish/gangw",
  1215. "style": {
  1216. "navigationBarTitleText": "岗位添加",
  1217. "navigationStyle": "custom"
  1218. }
  1219. },
  1220. {
  1221. "path": "publish/gangws",
  1222. "style": {
  1223. "navigationBarTitleText": "岗位添加",
  1224. "navigationStyle": "custom"
  1225. }
  1226. },
  1227. {
  1228. "path": "publish/editor",
  1229. "style": {
  1230. "navigationBarTitleText": "我的简历",
  1231. "navigationStyle": "custom"
  1232. }
  1233. },
  1234. {
  1235. "path": "publish/serveType",
  1236. "style": {
  1237. "navigationBarTitleText": "",
  1238. "navigationStyle": "custom"
  1239. }
  1240. },
  1241. {
  1242. "path": "publish/workhistory",
  1243. "style": {
  1244. "navigationBarTitleText": "工作经历",
  1245. "navigationStyle": "custom"
  1246. }
  1247. },
  1248. {
  1249. "path": "setting/customer",
  1250. "style": {
  1251. "navigationBarTitleText": "在线客服",
  1252. "navigationStyle": "custom"
  1253. }
  1254. },
  1255. {
  1256. "path": "feedback/index",
  1257. "style": {
  1258. "navigationBarTitleText": "意见反馈",
  1259. "navigationStyle": "custom"
  1260. }
  1261. },
  1262. {
  1263. "path": "setting/index",
  1264. "style": {
  1265. "navigationBarTitleText": "设置中心",
  1266. "navigationStyle": "custom"
  1267. }
  1268. },
  1269. {
  1270. "path": "setting/mimi",
  1271. "style": {
  1272. "navigationBarTitleText": "隐私政策",
  1273. "navigationStyle": "custom"
  1274. }
  1275. },
  1276. {
  1277. "path": "setting/xieyi",
  1278. "style": {
  1279. "navigationBarTitleText": "用户协议",
  1280. "navigationStyle": "custom"
  1281. }
  1282. },
  1283. {
  1284. "path": "setting/about",
  1285. "style": {
  1286. "navigationBarTitleText": "关于我们",
  1287. "navigationStyle": "custom"
  1288. }
  1289. },
  1290. {
  1291. "path": "setting/jobXy",
  1292. "style": {
  1293. "navigationBarTitleText": "岗位发布协议",
  1294. "navigationStyle": "custom"
  1295. }
  1296. },
  1297. {
  1298. "path": "setting/userphone",
  1299. "style": {
  1300. "navigationBarTitleText": "修改手机号",
  1301. "navigationStyle": "custom"
  1302. }
  1303. },
  1304. {
  1305. "path": "order/feedback",
  1306. "style": {
  1307. "navigationBarTitleText": "评论",
  1308. "navigationStyle": "custom"
  1309. }
  1310. },
  1311. {
  1312. "path": "takeOrder/index",
  1313. "style": {
  1314. "navigationBarTitleText": "我的接单",
  1315. "navigationStyle": "custom"
  1316. }
  1317. },
  1318. {
  1319. "path": "takeOrder/takeDetail",
  1320. "style": {
  1321. "navigationBarTitleText": "接单详情",
  1322. "navigationStyle": "custom"
  1323. }
  1324. },
  1325. {
  1326. "path": "setting/chat",
  1327. "style": {
  1328. "navigationBarTitleText": "联系客服",
  1329. "navigationStyle": "custom"
  1330. }
  1331. },
  1332. {
  1333. "path": "publish/updataServeType",
  1334. "style": {
  1335. "navigationBarTitleText": "修改",
  1336. "enablePullDownRefresh": false,
  1337. "navigationStyle": "custom"
  1338. }
  1339. },
  1340. {
  1341. "path": "publish/updataServeTypes",
  1342. "style": {
  1343. "navigationBarTitleText": "修改",
  1344. "enablePullDownRefresh": false,
  1345. "navigationStyle": "custom"
  1346. }
  1347. },
  1348. {
  1349. "path": "publish/updataGangw",
  1350. "style": {
  1351. "navigationBarTitleText": "岗位添加",
  1352. "enablePullDownRefresh": false,
  1353. "navigationStyle": "custom"
  1354. }
  1355. },
  1356. {
  1357. "path": "publish/updataGangws",
  1358. "style": {
  1359. "navigationBarTitleText": "岗位添加",
  1360. "enablePullDownRefresh": false,
  1361. "navigationStyle": "custom"
  1362. }
  1363. },
  1364. {
  1365. "path": "order/myIndex",
  1366. "style": {
  1367. "navigationBarTitleText": "我的定制化",
  1368. "enablePullDownRefresh": false,
  1369. "navigationBarBackgroundColor": "#ffffff",
  1370. "navigationStyle": "custom"
  1371. }
  1372. },
  1373. {
  1374. "path": "publish/serveTypes",
  1375. "style": {
  1376. "navigationBarTitleText": "定制化服务",
  1377. "enablePullDownRefresh": false,
  1378. "navigationBarBackgroundColor": "#ffffff",
  1379. "navigationStyle": "custom"
  1380. }
  1381. },
  1382. {
  1383. "path": "publish/editors",
  1384. "style": {
  1385. "navigationBarTitleText": "查看",
  1386. "enablePullDownRefresh": false,
  1387. "navigationStyle": "custom"
  1388. }
  1389. },
  1390. {
  1391. "path": "setting/feedbackIndex",
  1392. "style": {
  1393. "navigationBarTitleText": "帮助中心",
  1394. "enablePullDownRefresh": false,
  1395. "navigationStyle": "custom"
  1396. }
  1397. },
  1398. {
  1399. "path": "setting/helpDetail",
  1400. "style": {
  1401. "navigationBarTitleText": "帮助中心",
  1402. "enablePullDownRefresh": false,
  1403. "navigationStyle": "custom"
  1404. }
  1405. },
  1406. {
  1407. "path": "matching/matching",
  1408. "style": {
  1409. "navigationBarTitleText": "快速入职",
  1410. "enablePullDownRefresh": false,
  1411. "navigationStyle": "custom"
  1412. }
  1413. },
  1414. {
  1415. "path": "enterpriseInfo/enterpriseInfo",
  1416. "style": {
  1417. "navigationBarTitleText": "企业详情",
  1418. "enablePullDownRefresh": false,
  1419. "navigationBarBackgroundColor": "#4B4D5C",
  1420. "navigationBarTextStyle": "white",
  1421. "app-plus": {
  1422. // 将回弹属性关掉
  1423. "bounce": "none"
  1424. },
  1425. "navigationStyle": "custom"
  1426. }
  1427. },
  1428. {
  1429. "path": "vip/zhouka",
  1430. "style": {
  1431. "navigationBarTitleText": "人才库周卡",
  1432. "enablePullDownRefresh": false,
  1433. "navigationStyle": "custom"
  1434. }
  1435. },
  1436. {
  1437. "path": "setting/weekXiYi",
  1438. "style": {
  1439. "navigationBarTitleText": "会员开通协议",
  1440. "enablePullDownRefresh": false,
  1441. "navigationStyle": "custom"
  1442. }
  1443. },
  1444. {
  1445. "path": "feedback/jubao",
  1446. "style": {
  1447. "navigationBarTitleText": "举报",
  1448. "enablePullDownRefresh": false,
  1449. "navigationStyle": "custom"
  1450. }
  1451. },
  1452. {
  1453. "path": "jilu/jilu",
  1454. "style": {
  1455. "navigationBarTitleText": "面试记录",
  1456. "enablePullDownRefresh": false,
  1457. "navigationStyle": "custom"
  1458. }
  1459. },
  1460. {
  1461. "path": "jilu/jilu",
  1462. "style": {
  1463. "navigationBarTitleText": "面试记录",
  1464. "enablePullDownRefresh": false,
  1465. "navigationStyle": "custom"
  1466. }
  1467. },
  1468. {
  1469. "path": "jilu/mianshiDetail",
  1470. "style": {
  1471. "navigationBarTitleText": "面试详情",
  1472. "enablePullDownRefresh": false,
  1473. "navigationStyle": "custom"
  1474. }
  1475. },
  1476. {
  1477. "path": "jilu/bossMianshiDetail",
  1478. "style": {
  1479. "navigationBarTitleText": "面试详情",
  1480. "enablePullDownRefresh": false,
  1481. "navigationStyle": "custom"
  1482. }
  1483. },
  1484. {
  1485. "path": "jilu/editInterview",
  1486. "style": {
  1487. "navigationBarTitleText": "修改邀约",
  1488. "enablePullDownRefresh": false,
  1489. "navigationStyle": "custom"
  1490. }
  1491. },
  1492. // #ifdef APP || H5
  1493. {
  1494. "path": "videoVoice/videoVoice",
  1495. "style": {
  1496. "navigationBarTitleText": "",
  1497. "navigationStyle": "custom"
  1498. }
  1499. },
  1500. {
  1501. "path": "renzheng/companyBaseInfo",
  1502. "style": {
  1503. "navigationStyle": "custom",
  1504. "navigationBarTitleText": "公司信息"
  1505. }
  1506. },
  1507. {
  1508. "path": "renzheng/companyWelfare",
  1509. "style": {
  1510. "navigationStyle": "custom",
  1511. "navigationBarTitleText": "公司信息"
  1512. }
  1513. }
  1514. // #endif
  1515. ]
  1516. }
  1517. ],
  1518. "globalStyle": {
  1519. "navigationBarTextStyle": "black",
  1520. "navigationBarTitleText": "亿职赞",
  1521. "navigationBarBackgroundColor": "#FFFFFF",
  1522. "backgroundColor": "#ffffff"
  1523. },
  1524. "tabBar": {
  1525. "color": "#9CA4AB",
  1526. "selectedColor": "#0D27F7",
  1527. "backgroundColor": "#FFFFFF",
  1528. "borderStyle": "black",
  1529. "list": [
  1530. {
  1531. "pagePath": "pages/index/index",
  1532. "iconPath": "static/tabbar/Home.png",
  1533. "selectedIconPath": "/static/tabbar/Iconly_Bold_Home.png",
  1534. "text": "首页"
  1535. },
  1536. {
  1537. "pagePath": "pages/index/game/gameList",
  1538. "iconPath": "static/tabbar/jipin.png",
  1539. "selectedIconPath": "static/tabbar/ACjipin.png",
  1540. "text": "急聘"
  1541. },
  1542. // {
  1543. // "pagePath": "pages/talentSearch/index",
  1544. // "iconPath": "static/tabbar/Hrsearch.png",
  1545. // "selectedIconPath": "static/tabbar/ACsearch.png",
  1546. // "text": "搜索"
  1547. // },
  1548. {
  1549. "pagePath": "pages/msg/index",
  1550. "iconPath": "static/tabbar/Chat.png",
  1551. "selectedIconPath": "static/tabbar/ACchat.png",
  1552. "text": "消息中心"
  1553. },
  1554. {
  1555. "pagePath": "pages/my/index",
  1556. "iconPath": "static/tabbar/Iconly_Light_Profile.png",
  1557. "selectedIconPath": "static/tabbar/Iconly_Bulk_Profile.png",
  1558. "text": "个人中心"
  1559. }
  1560. ]
  1561. },
  1562. "condition": { //模式配置,仅开发期间生效
  1563. "current": 0, //当前激活的模式(list 的索引项)
  1564. "list": [
  1565. // {
  1566. // "name": "首页", //模式名称
  1567. // "path": "pages/index/index", //启动页面,必选
  1568. // "query": "" //启动参数,在页面的onLoad函数里面得到
  1569. // }
  1570. ]
  1571. }
  1572. }