You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
262 lines
5.4 KiB
262 lines
5.4 KiB
<template>
|
|
<view class="moreCould">
|
|
<view class="topbanner">
|
|
<image class="topbannerimg" src="../../../static/index/activeall.png" mode=""></image>
|
|
<view class="topCon">
|
|
<view class="topConT">
|
|
关键云员工
|
|
</view>
|
|
<view class="topConTB">
|
|
真实有效的软件人才库,名校毕业
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="searchBox">
|
|
<div class="input">
|
|
<u-input v-model="value" clearable :type="type" border />
|
|
</div>
|
|
<view class="searchbtn" @click="search">
|
|
搜索
|
|
</view>
|
|
</view>
|
|
<div class="contentBox">
|
|
<view class="jianliboxitem" v-for="it in peopleList" >
|
|
<view class="address">
|
|
<image src="../../../static/index/dd.png" mode=""></image>
|
|
北京
|
|
</view>
|
|
<view class="jlboxtop">
|
|
<image class="jlboxtopimg" :src="it.url" alt="" />
|
|
<view class="jlboxtoptit">{{it.name}}</view>
|
|
<view class="jlboxtopzc">{{it.zhicheng}}</view>
|
|
<view class="jlboxtopzcC">{{it.zhicheng}}</view>
|
|
</view>
|
|
<view class="jlboxbottom">
|
|
<view class="jlboxbottoml jlboxbottomlbor">
|
|
<image class="jlboxbottomlimg" src="../../../static/crowd/daxue.png" alt="" />
|
|
{{it.school}}
|
|
</view>
|
|
<view class="jlboxbottoml">
|
|
<image class="jlboxbottomlimg" src="../../../static/crowd/zhuanye.png" alt="" />
|
|
{{it.maj}}
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</div>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
peopleList: [{
|
|
url: 'http://image.keyitest.cn/static/index/renliwb/people1.png',
|
|
name: '杨**',
|
|
zhicheng: 'JAVA后端研发工程师',
|
|
school: '河南科技大学',
|
|
maj: '软件工程专业'
|
|
},
|
|
{
|
|
url: 'http://image.keyitest.cn/static/index/renliwb/people2.png',
|
|
name: '赵**',
|
|
zhicheng: 'Web全栈开发工程师',
|
|
school: '西安科技大学',
|
|
maj: '软件工程专业'
|
|
},
|
|
{
|
|
url: 'http://image.keyitest.cn/static/index/renliwb/people3.png',
|
|
name: '杨**',
|
|
zhicheng: 'JAVA研发工程师',
|
|
school: '阜阳师范大学',
|
|
maj: '软件工程专业'
|
|
},
|
|
{
|
|
url: 'http://image.keyitest.cn/static/index/renliwb/people4.png',
|
|
name: '王**',
|
|
zhicheng: '嵌入式工程师',
|
|
school: '西安科技大学',
|
|
maj: '软件工程专业'
|
|
}
|
|
],
|
|
};
|
|
},
|
|
methods: {
|
|
search() {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.moreCould {
|
|
.topbanner {
|
|
height: 250rpx;
|
|
margin-bottom: 43rpx;
|
|
position: relative;
|
|
|
|
.topbannerimg {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.topCon {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0 60rpx;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
.topConT {
|
|
font-weight: bold;
|
|
font-size: 42rpx;
|
|
color: #FFFFFF;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.topConTB {
|
|
font-weight: 500;
|
|
font-size: 25rpx;
|
|
color: #FFFFFF;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
.searchBox {
|
|
padding: 0 25rpx;
|
|
box-sizing: border-box;
|
|
margin-bottom: 40rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
.input {
|
|
flex: 1;
|
|
height: 60rpx;
|
|
::v-deep .u-input {
|
|
background: #FFFFFF !important;
|
|
border-radius: 4rpx 0rpx 0rpx 4rpx !important;
|
|
border: 1px solid #E6E7EB !important;
|
|
height: 60rpx !important;
|
|
}
|
|
::v-deep .u-input__input {
|
|
min-height: 60rpx !important;
|
|
}
|
|
}
|
|
.searchbtn {
|
|
width: 140rpx;
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
text-align: center;
|
|
background: #0066EB;
|
|
border-radius: 0rpx 4rpx 4rpx 0rpx;
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
color: #FFFFFF;
|
|
}
|
|
}
|
|
.contentBox {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
padding: 0 25rpx;
|
|
box-sizing: border-box;
|
|
.jianliboxitem {
|
|
width: 338rpx;
|
|
height: 380rpx;
|
|
background: #FFFFFF;
|
|
box-shadow: 0rpx 4rpx 34rpx 6rpx rgba(14, 97, 205, 0.1);
|
|
border-radius: 6rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
cursor: pointer;
|
|
transition: all .1s linear;
|
|
margin-bottom: 24rpx;
|
|
position: relative;
|
|
}
|
|
.address {
|
|
position: absolute;
|
|
top: 20rpx;
|
|
right: 20rpx;
|
|
font-weight: 500;
|
|
font-size: 20rpx;
|
|
color: #999999;
|
|
image {
|
|
width: 15rpx;
|
|
height: 19rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
.jlboxtop {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.jlboxtopimg {
|
|
width: 105rpx;
|
|
height: 105rpx;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.jlboxtoptit {
|
|
font-weight: bold;
|
|
font-size: 28rpx;
|
|
color: #000000;
|
|
margin: 10rpx 0;
|
|
}
|
|
|
|
.jlboxtopzc {
|
|
font-weight: 500;
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
}
|
|
.jlboxtopzcC {
|
|
font-weight: 500;
|
|
font-size: 20rpx;
|
|
color: #808080;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
|
|
.jlboxbottom {
|
|
width: 100%;
|
|
height: 55rpx;
|
|
border-top: 1px solid #EBEBEB;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.jlboxbottoml {
|
|
height: 19rpx;
|
|
flex: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-weight: 500;
|
|
font-size: 20rpx;
|
|
color: #808080;
|
|
}
|
|
|
|
.jlboxbottomlbor {
|
|
box-sizing: border-box;
|
|
border-right: 1px solid #EBEBEB;
|
|
}
|
|
|
|
.jlboxbottomlimg {
|
|
width: 17rpx;
|
|
height: 16rpx;
|
|
margin-right: 10rpx;
|
|
}
|
|
}
|
|
}
|
|
</style> |