Index.vue 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <div id="JoinUs">
  3. <div class="banner container-fuild text-center">加入我们</div>
  4. <div class="container">
  5. <div class="JoinUs-container wow pulse">
  6. <h2>JAVA全栈工程师</h2>
  7. <p>岗位职责</p>
  8. <ol>
  9. <li> 负责无人机领域的无人机web管理系统的二次开发,部署上线。</li>
  10. <li> 负责无人机管理系统的接口协议定义与接口开发。</li>
  11. <li> 参与系统需求分析与设计, 与项目经理一起参与客户需求调研,抽象业务功能,完成业务逻辑的开发。接口规范制定,架构设计。</li>
  12. </ol>
  13. <p>任职要求</p>
  14. <ol>
  15. <li>精通SpringBoot+MySql+Vue开发, 熟悉前后端分离的WEB开发思路,熟悉Vue3或React ;</li>
  16. <li>具备非常强的自学能力,遇到问题善于使用github、google、生成式AI、copilot等工具查询解决思路。</li>
  17. <li>熟练掌握 Java 语言,熟练掌握Spring boot 框架。 如果能熟练掌握C++ 与 opencv 更好(非必需)。</li>
  18. <li>具备良好的代码编写习惯和调试能力,能够编写可维护的高质量代码。</li>
  19. </ol>
  20. <button class="center-block btn btn-warning btn-lg">投递简历</button>
  21. </div>
  22. </div>
  23. </div>
  24. </template>
  25. <script>
  26. import { WOW } from 'wowjs';
  27. export default {
  28. name: "JoinUs",
  29. data() {
  30. return {};
  31. },
  32. mounted(){
  33. var wow = new WOW();
  34. wow.init();
  35. }
  36. };
  37. </script>
  38. <style scoped>
  39. .banner {
  40. color: #fff;
  41. font-size: 30px;
  42. height: 150px;
  43. line-height: 150px;
  44. background-image: url("~@/assets/img/banner_4.jpg");
  45. background-repeat: no-repeat;
  46. background-size: cover;
  47. background-attachment: scroll;
  48. background-position: center center;
  49. }
  50. .JoinUs-container {
  51. margin: 100px;
  52. padding: 30px;
  53. transition: all ease 0.5s;
  54. border: 1px dashed salmon;
  55. }
  56. .JoinUs-container h2{
  57. color: rgb(255, 102, 19);
  58. font-weight: bolder;
  59. text-align: center;
  60. }
  61. .JoinUs-container p{
  62. font-size: 20px;
  63. color: rgb(255, 102, 19);
  64. font-weight: 700;
  65. }
  66. .JoinUs-container ol{
  67. list-style-type: decimal;
  68. padding-left: 30px;
  69. }
  70. .JoinUs-container ol>li{
  71. font-size: 14px;
  72. line-height: 2.7rem;
  73. }
  74. @media screen and (max-width: 997px) {
  75. .JoinUs-container {
  76. margin: 20px 0;
  77. padding: 20px;
  78. border: 1px dashed salmon;
  79. }
  80. }
  81. </style>