rcfw.html 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>人才服务</title>
  7. <!-- 引入 Vue -->
  8. <script src="https://unpkg.com/vue@2.6.14/dist/vue.min.js"></script>
  9. <!-- 引入样式 -->
  10. <link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
  11. <!-- 引入组件库 -->
  12. <script src="https://unpkg.com/element-ui/lib/index.js"></script>
  13. <!-- jquery-->
  14. <script src="js/jquery-3.5.1.min.js"></script>
  15. <script src="js/urljson.js"></script>
  16. <style>
  17. * {
  18. padding: 0;
  19. margin: 0;
  20. }
  21. html,
  22. body {
  23. margin: 0;
  24. padding: 0;
  25. font-family: Microsoft YaHei;
  26. height: 100%;
  27. background: #EDF5FF;
  28. }
  29. @font-face {
  30. font-family: 'DOUYU';
  31. src: url('fonts/DOUYUFONT-2.OTF');
  32. font-weight: normal;
  33. font-style: normal;
  34. }
  35. .dqfw>.top {
  36. display: flex;
  37. justify-content: space-between;
  38. align-items: center;
  39. border-bottom: 1px solid #B7C7DC;
  40. background: #FFFFFF;
  41. }
  42. .toplogo {
  43. display: flex;
  44. align-items: center;
  45. font-family: DOUYU;
  46. font-weight: normal;
  47. font-size: 30px;
  48. color: #186FF0;
  49. height: 66px;
  50. cursor: pointer;
  51. }
  52. .toplogo img {
  53. margin: 0 20px;
  54. margin-bottom: 17px;
  55. }
  56. .backbutton {
  57. width: 117px;
  58. height: 42px;
  59. background: #DEEDFF;
  60. border-radius: 10px;
  61. font-family: Microsoft YaHei;
  62. font-weight: 400;
  63. font-size: 16px;
  64. color: #2474F1;
  65. display: flex;
  66. align-items: center;
  67. justify-content: center;
  68. margin-right: 10px;
  69. cursor: pointer;
  70. }
  71. .backbutton img {
  72. margin-right: 10px;
  73. }
  74. .container {
  75. display: flex;
  76. justify-content: space-between;
  77. min-width: 1300px;
  78. min-height: calc(100vh - 67px);
  79. padding: 15px;
  80. box-sizing: border-box;
  81. }
  82. .container>.left,
  83. .container>.right {
  84. width: 48%;
  85. }
  86. .title {
  87. height: 60px;
  88. background: #4B98F6;
  89. border-radius: 10px;
  90. font-family: DOUYU;
  91. font-weight: normal;
  92. font-size: 26px;
  93. color: #FEFEFE;
  94. line-height: 70px;
  95. text-align: center;
  96. }
  97. .container .list {
  98. width: 93%;
  99. margin: 10px auto;
  100. padding: 20px;
  101. background: #FFFFFF;
  102. border-radius: 10px;
  103. color: #333333;
  104. }
  105. .list .name {
  106. font-size: 20px;
  107. color: #333333;
  108. font-weight: bold;
  109. margin-bottom: 9px;
  110. }
  111. .list .content {
  112. text-indent: 40px;
  113. display: -webkit-box;
  114. -webkit-line-clamp: 2;
  115. overflow: hidden;
  116. text-overflow: ellipsis;
  117. -webkit-box-orient: vertical;
  118. word-break: break-all;
  119. }
  120. .list .gly {
  121. display: flex;
  122. color: #999999;
  123. align-items: center;
  124. margin-top: 20px;
  125. }
  126. .list .line {
  127. width: 1px;
  128. height: 16px;
  129. background: #999;
  130. display: block;
  131. margin: 0 5px;
  132. }
  133. </style>
  134. </head>
  135. <body>
  136. <div class="dqfw" id="dqfw">
  137. <div class="top">
  138. <div class="toplogo">
  139. <img src="images/gyylogo.png" alt="">
  140. <span>人才服务</span>
  141. </div>
  142. <div class="backbutton" @click="window.history.go(-1)">
  143. <img src="images/back1.png" alt="">
  144. <span>返回</span>
  145. </div>
  146. </div>
  147. <div class="container">
  148. <div class="left">
  149. <div class="title">江南菁英人才政策</div>
  150. <div class="list" v-for="(item,index) in jnjyrczph">
  151. <div class="name">{{item.name}}</div>
  152. <div class="content">{{item.content}}</div>
  153. <div class="gly"><span>{{item.person}}</span><span class="line"></span><span>{{item.time}}</span>
  154. </div>
  155. </div>
  156. </div>
  157. <div class="right">
  158. <div class="title" style="background: #4BB664;">招聘会</div>
  159. <div class="list" v-for="(item,index) in zph">
  160. <div class="name">{{item.name}}</div>
  161. <div class="content">{{item.content}}</div>
  162. <div class="gly"><span>{{item.person}}</span><span class="line"></span><span>{{item.time}}</span>
  163. </div>
  164. </div>
  165. </div>
  166. </div>
  167. </div>
  168. </body>
  169. <script>
  170. // 初始化Vue实例
  171. new Vue({
  172. el: '#dqfw',
  173. data: function () {
  174. return {
  175. jnjyrczph: [
  176. {
  177. id: 1,
  178. name: '解读《百万高校毕业生等青年留渝来渝就业创业行动计划》',
  179. content: '4月17日,市政府新闻办召开“机遇重庆”系列主题新闻发布会(第五场)百万高校些业生等青年留渝来渝就业创业行动新闻发布会。近日,我市出台《百万高校些业生等青年留渝来渝就业创业行动计划》 (以下简称《行动计划》)。... ',
  180. time: '2024-04-18 10:36:58',
  181. person: '管理员'
  182. },
  183. {
  184. id: 2,
  185. name: '@青年人 重庆十五条举措邀你留渝来渝就业创业',
  186. content: '4月17日,市政府新闻办召开“机遇重庆”系列主题新闻发布会(第五场)百万高校些业生等青年留渝来渝就业创业行动新闻发布会。近日,我市出台《百万高校些业生等青年留渝来渝就业创业行动计划》 (以下简称《行动计划》)。... ',
  187. time: '2024-04-18 10:36:58',
  188. person: '管理员'
  189. },
  190. {
  191. id: 3,
  192. name: '重庆市人民政府办公厅关于印发《百万高校毕业生等青年留渝来渝就业创业行动计划 (2024 2027年) 》的通知',
  193. content: '4月17日,市政府新闻办召开“机遇重庆”系列主题新闻发布会(第五场)百万高校些业生等青年留渝来渝就业创业行动新闻发布会。近日,我市出台《百万高校些业生等青年留渝来渝就业创业行动计划》 (以下简称《行动计划》)。... ',
  194. time: '2024-04-18 10:36:58',
  195. person: '管理员'
  196. }
  197. ],
  198. zph: [
  199. {
  200. id: 1,
  201. name: '重庆小易智联智能技术有限公司招聘信息',
  202. content: '',
  203. time: '2024-04-18 10:36:58',
  204. person: '管理员'
  205. },
  206. {
  207. id: 2,
  208. name: '招商交科2024春季校园招聘',
  209. content: '',
  210. time: '2024-04-18 10:36:58',
  211. person: '管理员'
  212. },
  213. {
  214. id: 3,
  215. name: '中移物联2024春季校园招聘',
  216. content: '中移物联网有限公司校园招聘(zhaopincom)',
  217. time: '2024-04-18 10:36:58',
  218. person: '管理员'
  219. }
  220. ]
  221. };
  222. },
  223. methods: {
  224. },
  225. mounted() {
  226. }
  227. });
  228. </script>
  229. </html>