| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654 |
- <template>
- <div class="education">
- <div class="imgs">
- <img src="./images/人才培养.png" alt="芝麻开花">
- <p>人才</p>
- <h4>企业成长的不竭动力</h4>
- </div>
- <div class="title col-md-12">
- <p>人才培养</p>
- </div>
- <div id="right" class="col-md-12">
- <!-- 当吸顶时,出现,占位,将content挤到原来的位置 -->
- <div class="middle" v-if="!flag"></div>
- <div class='middle' :class="navBarFixed == true ? 'navBarWrap' :''">
- <img src=".//images/line.png" alt="|">
- <ul>
- <li><a href="#padding" style="text-decoration:none">培训详情简介</a> </li>
- <li><a href="#padding2" style="text-decoration:none">考核&薪资</a></li>
- <li><a href="#padding3" style="text-decoration:none">优秀学员寄语</a></li>
- <li><a href="#padding4" style="text-decoration:none">实习生优秀项目展示</a> </li>
- <li><a href="#padding5" style="text-decoration:none">实习生毕业去向</a></li>
- </ul>
- </div>
- <div class="content">
- <div class="padding" id="padding">
- <h3>芝麻开花实习生培训介绍</h3>
- <div v-for="(introduce,index) in introduce" :key="index">
- <h4>{{index+1}}、{{introduce.title}}</h4>
- <p>{{introduce.par}}</p>
- </div>
- <h3>实习生招收岗位&招收对象</h3>
- <div class="job">
- <div v-for="(job,index) in jobs" :key="index">
- <h4>{{index+1}} 、{{job.title}}</h4>
- <ul>
- <li v-for="(par,index) in job.par" :key="index"><span class="glyphicon glyphicon-play-circle"></span> {{par}}</li>
- </ul>
- </div>
- </div>
- </div>
- <div class="padding2" id="padding2">
- <h3>薪资待遇</h3>
- <div class="picture">
- <div v-for="(wages,index) in wages" :key="index">
- <div class="img"><img src="./images/入门待遇.png" alt="待遇图片"><p>{{wages.title}}</p></div>
- <div class="money"><p>{{wages.money}}</p></div>
- </div>
- </div>
- <h3>考核标准</h3>
- <div>
- <div class='evaluate' v-for="(standard,index) in standard" :key="index">
- <p>{{standard.title}}</p>
- <ul>
- <li v-for="(par,index) in standard.par" :key="index">
- <span v-if="standard.par.length>1">({{index+1}})</span>{{par.tit}}
- <ul>
- <li v-for="(model,index) in par.model" :key="index">{{model}}</li>
- </ul>
- </li>
- </ul>
- </div>
- </div>
- </div>
- <div class="padding3" id="padding3">
- <h3>优秀学员寄语</h3>
- <div class="box">
- <ul>
- <li v-for="(obj,index) in wishes" :key="index">
- <h5>{{obj.name}}</h5><span class="line"></span>
- <div>
- <p>{{obj.intro}}</p>
- <p><span class="bord">学生寄语:</span>{{obj.wish}}</p>
- </div>
- </li>
- </ul>
- </div>
- </div>
- <div class="padding4" id="padding4">
- <h3>实习生优秀项目展示</h3>
- <div class="show">
- <div>
- <img :src="img" alt="作品展示" v-for="(img,index) in showImg" :key="index">
- </div>
- </div>
- </div>
- <div class="padding5" id="padding5">
- <h3>优秀学员毕业去向</h3>
- <ul>
- <li v-for="(goToArr,index) in goToArrs" :key="index"><img :src="goToArr" alt="优秀学员去向"></li>
- </ul>
- </div>
- </div><home-footer></home-footer> </div>
- </div>
- </template>
- <script>
- /* eslint-disable */
- import img1 from ".//images/goto_1.png";
- import img2 from ".//images/goto_2.png";
- import img3 from ".//images/goto_3.png";
- import img4 from ".//images/goto_4.png";
- import image1 from ".//images/show1.png";
- import image2 from ".//images/show2.png";
- import image3 from ".//images/show3.png";
- import HomeFooter from '../components/footer.vue'
- export default {
- name: 'edutation',
- components: {
- HomeFooter
- },
- data(){
- return{
- "labels":["培训详情简介","考核&薪资","优秀学员寄语","实习生优秀项目展示","实习生毕业去向"],
- "introduce":[
- {
- "title":"公司介绍",
- "par":"西安芝麻开花网络科技有限公司(芝麻开发平台西安运营公司)成立于2016年,是一家集开发、销售、服务、培训为一体的高科技型企业,多年来专注于互联网技术开发和数据服务,为创业企业提供互联网技术支持,为传统企业互联网转型提供专业的全程解决方案,为政府事业单位提供信息化策略支持,为硬件技术企业提供互联网技术结合方案,采用全职+兼职+实习的管理模式。"
- },
- {
- "title":"实习环境",
- "par":"办公地址位于西安曲江新区顶级写字楼,零食冷饮免费吃,饮料无限畅饮,篮球及户外活动小组等业余生活丰富。"
- },
- {
- "title":"参与真实项目",
- "par":"培训完成后,如通过考核,我公司会安排学员参与实际项目。"
- },
- {
- "title":"发放工资",
- "par":" 如通过考核并已参加我公司实际项目,每月会以个人综合能力、工作态度以及贡献等方面进行考核,优异者的薪资将上不封顶。"
- },
- ],
- "jobs":[
- {
- "title":"招收岗位",
- "par":["产品经理","产品测试","web前端开发","IOS开发","PHP开发","安卓开发"]
- },
- {
- "title":"招收对象",
- "par":["具有良好的计算机基础,踏实好学","善于沟通及团队协作,工作认真细致,乐于分享","有无经验均可,服从公司安排,其他技能我司提供岗位培训"],
- },
- {
- "title":"申请方式",
- "par":["有意者请发送简历至邮箱:qijianying@xazhima.com"]
- }
- ],
- "wages":[
- {
- "title":"入门待遇","money":"200元/8小时"
- },
- {
- "title":"最低待遇","money":"140元/8小时"
- },
- {
- "title":"最高待遇","money":"上不封顶"
- }
- ],
- "wishes":[
- {"name":"王同学","wish":"坚持做难且正确的事情。",
- "intro":"毕业于西安电子科技大学生物医学工程专业,2016年6-9月到芝麻开发培训实习。目前就职于趣头条产品经理岗位。"},
- {"name":"卜同学","wish":"在芝麻开发,你可以从真实的项目中提升自己的专业技能,也会与一批优秀的人共同进步。",
- "intro":"毕业于西安电子科技大学数学与应用数学专业,2016年7月到西安芝麻开发培训实习。目前就职于芝麻开发产品经理岗位。"},
- {"name":"蒋同学","wish":"相信芝麻开发 总有一天会感激它的。",
- "intro":"毕业于西安电子科技大学生物医学工程专业,2016年6-9月到芝麻开发培训实习。目前就职于北京中体骏彩信息技术有限公司产品经理岗位。"},
- {"name":"吴同学","wish":"在芝麻开发除了能够学到专业技能之外,我认为更可贵的是潜移默化地培养了一种职业精神,严谨的契约精神和正确的职业观在学校是无法学到的。",
- "intro":"毕业于西安电子科技大学电子与通信工程专业,2017年10月-2019年4月到芝麻开发培训实习。目前就职于顺丰速运有限公司产品经理岗位。"},
- ],
- "standard":[
- {
- "title":"一、每月进行一次,考核结果由各部门负责人审核;",
- "par":[]
- },
- {
- "title":"二、考核分为好评与差评:",
- "par":[
- {
- "tit":"好评标准:",
- "model":["工作态度积极;"]
- },
- {
- "tit":"差评标准:",
- "model":["项目因内部原因出现延期情况;","项目交付测试,测试主功能流程测不通;","客户对项目进行投诉;","所有全职人员对实习生个人的投诉;","每月如有一个好评加一个差评情况,视为差评;"," 出现以上的情况,将对技术开发小组成员进行差评。"]
- }
- ]
- },
- {
- "title":"三、实行考核目的:",
- "par":[
- {
- "tit":"为了规范开发人员的行为,提高工作质量及工作效率。"
- }
- ]
- },
- ],
- "showImg":[image1,image2,image3],
- "goToArrs":[img1,img2,img3,img4],
- navBarFixed :"false",
- flag:true
- }
- },
- mounted () {
- // 事件监听滚动条
- window.addEventListener('scroll', this.watchScroll)
- },
- methods: {
- watchScroll () {
- var scrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop
- // 当滚动超过400时,实现吸顶效果
- if (scrollTop > 580) {
- this.navBarFixed = true
- } else {
- this.navBarFixed = false
- }
- this.flag=!this.navBarFixed
- }
- }
- }
- </script>
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style scoped>
- *{
- margin: 0px;
- padding: 0px;
- list-style: none;
- text-align: left;
- }
- /************************************整体样式********************************************/
- #right{
- display: flex;
- flex: row;
- flex-wrap: wrap;
- }
- #right .middle{
- flex: 1;
- }
- .content{
- flex:3
- }
- /********************imgs***************************/
- @media screen and (max-width:1240px){
- .education .imgs img{
- width: 100%;
- max-height: 400px;
- }
- .education .imgs p{
- font-size: 50px!important;
- color:rgb(97, 137, 224);
- position: absolute;
- left: 52%;
- top: 35%;
- font-weight: 600;
- }
- .education .imgs h4{
- font-size: 30px!important;
- color:rgb(114, 76, 76);
- position: absolute;
- left: 58%;
- top: 60%;
- font-weight: 600;
- }
- .middle{
- display: none;
- }
- .title p{
- font-size: 50px!important;
- width: 210px!important;
- }
- h3{
- font-size: 40px!important;
- width: 500px!important;
- }
- h4{
- font-size: 40px!important;
- margin-top: 30px!important;
- margin-bottom: 30px!important;
- }
- h5{
- font-size: 32px!important;
- }
- .padding2 h3{
- width: 200px!important;
- }
- .padding3 h3{
- width: 280px!important;
- }
- .padding4 h3{
- width: 350px!important;
- }
- .padding5 h3{
- width: 350px!important;
- }
- .content{
- padding: 2%!important;
- }
- .content .padding2{
- padding: 4%!important;
- }
- .content .padding{
- padding: 4%!important;
- margin: 0!important;
- }
- .content .padding3{
- padding: 4%!important;
- }
- .content .padding4{
- padding: 4%!important;
- }
- .padding p{
- font-size: 36px!important;
- line-height: 80px!important;
- }
- .job ul li{
- font-size: 28px!important;
- height: 80px!important;
- line-height: 80px!important;
- }
- .padding2 p{
- font-size: 32px!important;
- }
- .padding2 ul li{
- font-size: 32px!important;
- padding-top: 30px!important;
- }
- .padding3 ul li span{
- font-size: 36px!important;
- }
- .padding3 ul li p{
- font-size: 32px!important;
- padding-top: 10px!important;
- line-height: 80px!important
- }
- }
- .education .imgs{
- width: 100%;
- position: relative;
- }
- .education .imgs img{
- width: 100%;
- max-height: 400px;
- }
- .education .imgs p{
- font-size: 70px;
- color:rgb(97, 137, 224);
- position: absolute;
- left: 52%;
- top: 35%;
- font-weight: 600;
- }
- .education .imgs h4{
- font-size: 50px;
- color:#ddd;
- position: absolute;
- left: 58%;
- top: 60%;
- font-weight: 600;
- }
- /********************imgs***************************/
- /************************************主体样式********************************************/
- /*********头部*********/
- .education .title {
- width: 100%;
- font-family: 'Arial Normal', 'Arial';
- margin-top: 30px;
- padding-left: 50px;
- font-size: 22px;
- border-bottom: 1px solid #333;
- }
- .education .title p{
- width: 130px;
- text-align: center;
- font-family: PingFangSC-Regular;
- font-size: 28px;
- color: #4A4A4A;
- letter-spacing: 0;
- border-bottom: 2px solid black;
- margin-bottom: 0px;
- }
- #right .middle img{
- float: left;
- margin-left: 40px;
- margin-top: 60px;
- height: 340px;
- }
- #right .middle ul{
- margin-left: 20px;
- float: left;
- margin-top:12px;
- }
- #right .middle ul li{
- font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
- padding:50px 0px 0px 0px;
- height: 75px;
- font-weight: 500;
- font-size: 24px;
- color: #000000;
- }
- #right .middle ul li:hover{
- cursor: pointer;
- }
- /**********左边********/
- /******************content********************************/
- #right .content{
- padding-right: 2%;
- }
- #right .content .padding{
- border:1px solid #e2dfdf;
- margin-top:50px;
- padding: 0px 0px 20px 20px;
- }
- #right .content .padding h3{
- width: 340px;
- line-height: 60px;
- border-bottom: 1px solid #006699;
- font-family: PingFangSC-Regular;
- font-weight: 700;
- text-align: center;
- font-size: 28px;
- color: #006699;
- margin: 30px 0px 0px 15px;
- }
- #right .content .padding h4{
- font-family: PingFangSC-Regular;
- font-weight: 700;
- font-size: 26px;
- color: #000000;
- text-indent: 2em;
- padding: 15px 0px 15px 15px;
- }
- #right .content .padding p{
- font-size: 22px;
- text-indent: 2em;
- padding-right: 20px;
- padding-left: 20px;
- line-height: 50px;
- }
- #right .content .padding .job ul{
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- #right .content .padding .job ul li{
- width: 100%;
- font-size: 22px;
- height: 50px;
- line-height: 50px;
- padding-left: 5%;
- }
- /* 招收岗位底下的li每行有两个 */
- #right .content .padding .job>div:first-of-type ul li {
- width: 50%;
- }
- /* 申请方式前面不用字体图标 */
- #right .content .padding .job>div:last-of-type ul li span{
- display: none;
- }
- /*********第二个浅色框***************/
- #right .content .padding2{
- border:1px solid #e2dfdf;
- margin-top:50px;
- padding: 0px 0px 20px 20px;
- }
- #right .content .padding2 h3{
- width: 120px;
- line-height: 60px;
- border-bottom: 1px solid #006699;
- font-family: PingFangSC-Regular;
- font-weight: 700;
- text-align: center;
- font-size: 28px;
- color: #006699;
- margin: 40px 0px 0px 15px;
- }
- #right .content .padding2 .picture{
- /* padding: 0 0 30px 150px; */
- display: flex;
- flex: 1;
- flex-direction: column;
- }
- #right .content .padding2 .picture p{
- font-size: 22px;
- }
- #right .content .padding2 .picture img{
- width: 90px;
- }
- #right .content .padding2 .picture>div{
- display: flex;
- flex-direction: row;
- padding-top: 50px;
- justify-content: space-between;
- }
- #right .content .padding2 .picture .img{
- padding-left: 10%;
- display: flex;
- width: 50%;
- flex-direction: row;
- align-items: center;
- }
- #right .content .padding2 .picture .money{
- display: flex;
- width: 50%;
- align-items: center;
- }
- #right .content .padding2 .evaluate{
- margin-top: 15px;
- padding-left: 5%;
- font-family: PingFangSC-Regular;
- }
- #right .content .padding2 .evaluate p{
- font-size: 18px;
- line-height: 40px;
- }
- #right .content .padding2 .evaluate ul li{
- line-height: 30px;
- font-size: 15px;
- }
- #right .content .padding2 .evaluate ul li ul{
- padding-left: 10px;
- }
- /*********第二个浅色框***************/
- /*********第三个浅色框***************/
- #right .content .padding3{
- border:1px solid #e2dfdf;
- margin-top:50px;
- padding-bottom: 30px;
- }
- #right .content .padding3 h3{
- width: 170px;
- line-height: 60px;
- border-bottom: 1px solid #006699;
- font-family: PingFangSC-Regular;
- font-weight: 700;
- text-align: center;
- font-size: 28px;
- color: #006699;
- margin: 30px 0px 20px 35px;
- }
- #right .content .padding3 .box{
- border:1px solid black;
- padding: 3%;
- padding-right: 0;
- }
- #right .content .padding3 ul li{
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- #right .content .padding3 ul li h5{
- font-size: 28px;
- line-height: 60px;
- text-align: center;
- width: 15%;
- height: 60px;
- background: #006699;
- color: aliceblue;
- }
- #right .content .padding3 ul li .line{
- width: 85%;
- height: 30px;
- border-bottom: 2px solid #006699;
- }
- #right .content .padding3 .box div{
- padding:2%;
- }
- #right .content .padding3 .box div p{
- line-height: 50px;
- font-size: 22px;
- }
- #right .content .padding3 .box div .bord{
- font-weight: bold;
- }
- /*********第三个浅色框***************/
- /*********第四个浅色框***************/
- #right .content .padding4{
- border:1px solid #e2dfdf;
- margin-top: 50px;
- }
- #right .content .padding4 h3{
- width: 260px;
- line-height: 60px;
- border-bottom: 1px solid #006699;
- font-family: PingFangSC-Regular;
- font-weight: 700;
- text-align: center;
- font-size: 28px;
- color: #006699;
- margin: 30px 0px 20px 35px;
- }
- #right .content .padding4 .show>div{
- width: 60%;
- margin-left: 15%;
- border: 1px solid black;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- flex-wrap: wrap;
- }
- /* 后面两个作品展示的宽度 */
- #right .content .padding4 .show img{
- width: 48%;
- }
- /* 第一个作品展示的宽度 */
- #right .content .padding4 .show>div img:first-of-type{
- width: 100%;
- }
- /*********第四个浅色框***************/
- /*********第五个浅色框***************/
- #right .content .padding5{
- border:1px solid #e2dfdf;
- margin-top:50px;
- padding-bottom: 80px;
- }
- #right .content .padding5 h3{
- width: 260px;
- line-height: 60px;
- border-bottom: 1px solid #006699;
- font-family: PingFangSC-Regular;
- font-weight: 700;
- text-align: center;
- font-size: 28px;
- color: #006699;
- margin: 30px 0px 50px 35px;
- }
- #right .content .padding5 ul{
- width: 80%;
- border: 1px solid black;
- margin: 0px auto;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- }
- #right .content .padding5 ul li{
- padding: 1%;
- width: 50%;
- border: 1px solid black;
- }
- #right .content .padding5 ul li img{
- width: 100%;
- max-height: 200px;
- }
- /*********第五个浅色框***************/
- /*********************content*************************/
- /************************************右边样式********************************************/
- .navBarWrap {
- position:fixed;
- top:-40px;
- z-index:-1;
- }
- </style>
|