初版提交

This commit is contained in:
2025-10-28 14:57:45 +08:00
parent 33702b7438
commit 3de94a58af
70 changed files with 3066 additions and 0 deletions

104
src/view/JobChance.vue Normal file
View File

@ -0,0 +1,104 @@
<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>