resume-out.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <template>
  2. <div>
  3. <header>
  4. <div class="resume-tip">
  5. <span>热线电话:400-880-XXXX</span>
  6. <span>欢迎来到PHYUN人才招聘系统</span>
  7. </div>
  8. <div class="resume-logo">
  9. <img src="../../../assets/hlogo.png">
  10. <span class="logo-sp1"><a href="">个人中心</a></span>
  11. <span class="logo-sp2"><a href="">简历管理</a></span>
  12. <span class="logo-sp3"><a href="">求职管理</a></span>
  13. <a href="">返回主页面》</a>
  14. </div>
  15. </header>
  16. <nav>
  17. </nav>
  18. <section>
  19. <div class="resume-list">
  20. <div class="first-list"><span>简历管理</span></div>
  21. <div class="second-list"><img src="../../../assets/resume-second-list.png" class="list-pic-left"><a href="" class="list-a">我的简历</a><img src="../../../assets/selected.png" class="list-pic-right"></div>
  22. <div class="third-list"><img src="../../../assets/resume-third-list.png" class="list-pic-left"><a href="" class="list-a">创建简历</a><img src="../../../assets/selected.png" class="list-pic-right"></div>
  23. <div class="fourth-list"><img src="../../../assets/resume-fourth-list.png" class="list-pic-left"><a href="" class="list-a">简历被浏览</a><img src="../../../assets/selected.png" class="list-pic-right"></div>
  24. <div class="fifth-list"><img src="../../../assets/resume-fifth-list.png" class="list-pic-left"><a href="" class="list-a">简历外放</a><img src="../../../assets/selected.png" class="list-pic-right"></div>
  25. </div>
  26. <div class="resume-content">
  27. <span>简历外发</span>
  28. <hr class="out-hr">
  29. <form action="">
  30. <table>
  31. <tr>
  32. <td>*</td>
  33. <td>将要发送的简历:</td>
  34. <td>
  35. <select name="jianli" id="">
  36. <option value="">请选择简历</option>
  37. </select>
  38. </td>
  39. </tr>
  40. <tr>
  41. <td>*</td>
  42. <td>企业的邮箱地址:</td>
  43. <td>
  44. <select name="youxiang" id="">
  45. <option value="">请选择邮箱</option>
  46. </select>
  47. </td>
  48. </tr>
  49. <tr>
  50. <td>*</td>
  51. <td>应聘的企业名称:</td>
  52. <td>
  53. <select name="qiye" id="">
  54. <option value="">请选择企业名称</option>
  55. </select>
  56. </td>
  57. </tr>
  58. <tr>
  59. <td>*</td>
  60. <td>应聘的职位名称:</td>
  61. <td>
  62. <select name="zhiwei" id="">
  63. <option value="">请输入职位名称</option>
  64. </select>
  65. </td>
  66. </tr>
  67. <tr>
  68. <td><input type="submit" value="发送" class="input-out"></td>
  69. </tr>
  70. </table>
  71. </form>
  72. </div>
  73. </section>
  74. </div>
  75. </template>
  76. <script>
  77. export default{
  78. name:'resumeout',
  79. }
  80. </script>
  81. <style>
  82. *{
  83. margin: 0;
  84. padding: 0;
  85. }
  86. body{
  87. background-color: #eaebef;
  88. }
  89. header{
  90. height: 20vh;
  91. width: 100%;
  92. }
  93. .resume-tip{
  94. height: 5vh;
  95. background-color: #e0dada;
  96. color: #0c0000;
  97. position: relative;
  98. }
  99. .resume-tip > span:nth-child(1){
  100. position: absolute;
  101. left: 10rem;
  102. top: 0.4rem;
  103. }
  104. .resume-tip > span:nth-child(2){
  105. position: absolute;
  106. right: 10rem;
  107. top: 0.4rem;
  108. }
  109. .resume-logo{
  110. height: 15vh;
  111. background-color: #eaebef;
  112. position: relative;
  113. }
  114. .resume-logo > img{
  115. position: absolute;
  116. left: 9rem;
  117. }
  118. .resume-logo > a{
  119. position: absolute;
  120. right: 9rem;
  121. bottom: 0;
  122. text-decoration: none;
  123. color: #4299e9;
  124. }
  125. .resume-logo > a:hover{
  126. color: indianred;
  127. }
  128. .logo-sp1{
  129. position: absolute;
  130. left: 35rem;
  131. top: 3rem;
  132. font-size: 16px;
  133. }
  134. .logo-sp1 > a{
  135. text-decoration: none;
  136. color: #080808;
  137. }
  138. .logo-sp1 > a:hover{
  139. color: indianred;
  140. }
  141. .logo-sp2{
  142. position: absolute;
  143. left: 48rem;
  144. top: 3rem;
  145. font-size: 16px;
  146. }
  147. .logo-sp2 > a{
  148. text-decoration: none;
  149. color: #78aeec;
  150. }
  151. .logo-sp2 > a:hover{
  152. color: indianred;
  153. }
  154. .logo-sp3{
  155. position: absolute;
  156. left: 61rem;
  157. top: 3rem;
  158. font-size: 16px;
  159. }
  160. .logo-sp3 > a{
  161. text-decoration: none;
  162. color: #080808;
  163. }
  164. .logo-sp3 > a:hover{
  165. color: indianred;
  166. }
  167. nav{
  168. background-color: #6b799e;
  169. height: 4vh;
  170. width: 100%;
  171. }
  172. section{
  173. height: 76vh;
  174. width: 100%;
  175. background-color: #eaebef;
  176. position: relative;
  177. }
  178. table{
  179. position: absolute;
  180. top: 5rem;
  181. float: left;
  182. left: 20rem;
  183. line-height: 3rem;
  184. }
  185. table > tr > td:nth-child(1){
  186. color: red;
  187. }
  188. table > tr > td:nth-child(2){
  189. font-size: 10px;
  190. }
  191. table > tr > td:nth-child(3){
  192. float: left;
  193. }
  194. select{
  195. width: 15rem;
  196. height: 4vh;
  197. outline: none;
  198. border: 1px solid #4198e8;
  199. color: #68696b;
  200. font-size: 10px;
  201. }
  202. .resume-list{
  203. position: absolute;
  204. width: 13%;
  205. height: 33vh;
  206. left: 10rem;
  207. }
  208. .resume-content{
  209. position: absolute;
  210. right: 10rem;
  211. background-color: #f4f8fb;
  212. height: 100vh;
  213. width: 64%;
  214. text-align: center;
  215. }
  216. .resume-content > span{
  217. color: #3b3c3e;
  218. font-size: 13.5px;
  219. text-transform: uppercase;
  220. line-height: 3rem;
  221. margin-left: -880px;
  222. }
  223. .out-hr{
  224. background-color: #616161;
  225. height: 1px;
  226. }
  227. .first-list{
  228. height: 7vh;
  229. background-color: #4297e8;
  230. }
  231. .first-list > span{
  232. color: #fbf9fa;
  233. line-height: 3.3rem;
  234. margin-left: 4rem;
  235. }
  236. .second-list{
  237. height: 6vh;
  238. background-color: #f4f8fb;
  239. position: relative;
  240. border-bottom: 1px solid #595b5a;
  241. }
  242. .list-a{
  243. position: absolute;
  244. left: 4rem;
  245. top: 0.8rem;
  246. text-decoration: none;
  247. color: #5a5c5b;
  248. }
  249. .list-pic-left{
  250. position: absolute;
  251. left: 1rem;
  252. top: 0.4rem;
  253. }
  254. .list-pic-right{
  255. position: absolute;
  256. right: 1rem;
  257. top: 0.8rem;
  258. }
  259. .third-list{
  260. height: 6vh;
  261. background-color: #f4f8fb;
  262. position: relative;
  263. border-bottom: 1px solid #595b5a;
  264. }
  265. .fourth-list{
  266. height: 6vh;
  267. background-color: #f4f8fb;
  268. position: relative;
  269. border-bottom: 1px solid #595b5a;
  270. }
  271. .fifth-list{
  272. height: 8vh;
  273. background-color: #f4f8fb;
  274. position: relative;
  275. }
  276. .input-out{
  277. background-color: #4297e8;
  278. color: #fcfcfc;
  279. outline: none;
  280. border: none;
  281. width: 5rem;
  282. height: 4vh;
  283. position: absolute;
  284. left: 11.8rem;
  285. top: 14rem;
  286. }
  287. </style>