132 lines
4.5 KiB
Vue
132 lines
4.5 KiB
Vue
|
<template>
|
|||
|
<div class="page">
|
|||
|
<div class="list">
|
|||
|
<div class="item" v-for="i in 1">
|
|||
|
<div class="title">
|
|||
|
<span class="position">电气工程师 </span>
|
|||
|
<span class="apply">申请职位</span>
|
|||
|
</div>
|
|||
|
<div class="content">
|
|||
|
<div class="left">
|
|||
|
<div class="num">招聘人数:3</div>
|
|||
|
<div class="area">工作地点:连云港</div>
|
|||
|
<div class="time">发布日期:2024-2-13</div>
|
|||
|
</div>
|
|||
|
<div class="requirement center">
|
|||
|
<p>岗位职责: </p>
|
|||
|
<p>1、负责建筑项目电气方案与施工图优化;</p>
|
|||
|
<p>2、负责强弱电工程施工管理,质量、进度等工作; </p>
|
|||
|
<p> 3、负责项目设备调试及配合</p>
|
|||
|
</div>
|
|||
|
<div class="requirement right">
|
|||
|
<p>岗位职责: </p>
|
|||
|
<p>1、负责建筑项目电气方案与施工图优化;</p>
|
|||
|
<p>2、负责强弱电工程施工管理,质量、进度等工作; </p>
|
|||
|
<p> 3、负责项目设备调试及配合</p>
|
|||
|
<p> 3、负责项目设备调试及配合目设备调试及配合目设备调试及配合</p>
|
|||
|
<p> 3、负责项目设备调试及配合目设备调试及配合目设备调试及配合</p>
|
|||
|
<p> 3、负责项目设备调试及配合目设备调试及配合目设备调试及配合目设备调试及配合目设备调试及配合</p>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
name: 'Bottom',
|
|||
|
components: {
|
|||
|
},
|
|||
|
data(){
|
|||
|
return{
|
|||
|
|
|||
|
}
|
|||
|
},
|
|||
|
created(){
|
|||
|
|
|||
|
},
|
|||
|
|
|||
|
methods:{
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
</script>
|
|||
|
<style lang="scss" scoped>
|
|||
|
.page{
|
|||
|
.list{
|
|||
|
display: flex;
|
|||
|
flex-wrap: wrap;
|
|||
|
padding: 1rem 2.375rem;
|
|||
|
background-color: #fff;
|
|||
|
/* justify-content: space-between; */
|
|||
|
.item{
|
|||
|
width: 100%;
|
|||
|
padding: .375rem;
|
|||
|
background: #EEF3F9;
|
|||
|
position: relative;
|
|||
|
&::after{
|
|||
|
content: '';
|
|||
|
position: absolute;
|
|||
|
width: .4375rem;
|
|||
|
height: .1rem;
|
|||
|
background: #E60012;
|
|||
|
left: 1.1rem;
|
|||
|
top: 0;
|
|||
|
}
|
|||
|
.title{
|
|||
|
display: flex;
|
|||
|
justify-content: space-between;
|
|||
|
.position{
|
|||
|
font-size: .375rem;
|
|||
|
color: #000000;
|
|||
|
}
|
|||
|
.apply{
|
|||
|
width: 1.575rem;
|
|||
|
height: .525rem;
|
|||
|
background: #E60012;
|
|||
|
font-size: .225rem;
|
|||
|
display: flex;
|
|||
|
justify-content: center;
|
|||
|
align-items: center;
|
|||
|
color: #fff;
|
|||
|
}
|
|||
|
}
|
|||
|
.content{
|
|||
|
margin-top: .25rem;
|
|||
|
display: flex;
|
|||
|
.left{
|
|||
|
div{
|
|||
|
width: 2.975rem;
|
|||
|
height: .35rem;
|
|||
|
line-height: .35rem;
|
|||
|
background: linear-gradient(to right,#1D2088,#EEF3F9);
|
|||
|
margin-bottom: .125rem;
|
|||
|
font-size: .175rem;
|
|||
|
color: #FFFFFF;
|
|||
|
padding-left: .175rem;
|
|||
|
}
|
|||
|
}
|
|||
|
.requirement{
|
|||
|
width: 7.5625rem;
|
|||
|
margin-left: .6rem;
|
|||
|
font-size: .2rem;
|
|||
|
color: #000000;
|
|||
|
line-height: .45rem;
|
|||
|
background-color: #fff;
|
|||
|
}
|
|||
|
.center{
|
|||
|
}
|
|||
|
.right{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
</style>
|
|||
|
|