Files
wagoo-official/src/view/JobChance.vue
2025-10-28 14:57:45 +08:00

105 lines
3.1 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<div id="JobChance">
<div class="banner container-fuild text-center">工作机会</div>
<div class="container">
<div class="JobChance-container wow pulse">
<h2>软件工程师</h2>
<p>岗位职责</p>
<ol>
<li>负责公司产品及项目系统的功能开发代码优化</li>
<li>负责项目组人员任务的分配与监督及时解决项目技术问题</li>
<li>
参与系统需求分析与设计并负责完成PHP核心代码接口规范制定架构设计
</li>
</ol>
<p>任职要求</p>
<ol>
<li>
精通PHP+MySql+Apache开发精通使用JavaScriptAJAXJQuery等技术3年以上WEB应用程序开发经验
有大型网站或电子商务网站工作经验者优先
</li>
<li>熟悉jQuery具有AJAXHTMLCSSJAVASCRIPT等方面的开发经验</li>
<li>
熟悉PHP模板技术框架技术及设计模式有php框架系统进行开发经验者优先phpcmsdedecms等
</li>
<li>
精通数据库原理精通MYSQL了解Mongo等并有相关关系数据库设计开发经验,
了解Mysql的数据库配置管理性能优化
</li>
<li>
熟悉常见的数据结构和算法具备良好的编程习惯及较强的文档编写能力
</li>
<li>熟悉各种WEB缓存技术,熟悉大型网站构架和性能优化</li>
<li>
对网站系统架构的部署搭建优化排错等方面有丰富经验对高负载大访问量情况下的系统架构有经验者优先
</li>
</ol>
<button
class="center-block btn btn-warning btn-lg"
@click.stop="submitForm"
>
投递简历
</button>
</div>
</div>
</div>
</template>
<script setup name="JobChance">
import WOW from 'wow.js'
import { onMounted } from 'vue'
onMounted(() => {
let wow = new WOW()
wow.init()
})
function submitForm() {
window.open('https://neveryu.github.io/neveryu/', 'NeverYu')
}
</script>
<style scoped>
.banner {
color: #fff;
font-size: 30px;
height: 150px;
line-height: 150px;
background-image: url('../assets/img/banner_2.jpg');
background-repeat: no-repeat;
background-size: cover;
background-attachment: scroll;
background-position: center center;
}
.JobChance-container {
margin: 100px;
padding: 30px;
transition: all ease 0.5s;
border: 1px dashed salmon;
}
.JobChance-container h2 {
color: rgb(255, 102, 19);
font-weight: bolder;
text-align: center;
}
.JobChance-container p {
font-size: 20px;
color: rgb(255, 102, 19);
font-weight: 700;
}
.JobChance-container ol {
list-style-type: decimal;
padding-left: 30px;
}
.JobChance-container ol > li {
font-size: 14px;
line-height: 2.7rem;
}
@media screen and (max-width: 997px) {
.JobChance-container {
margin: 20px 0;
padding: 20px;
border: 1px dashed salmon;
}
}
</style>