特易招,招聘小程序
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.
 
 
 

165 lines
3.0 KiB

<template>
<view class="boss-item"
@click.stop="$utils.navigateTo('/pages_order/work/bossDetail?id=' + item.id)">
<view class="head">
<view class="headImage">
<image :src="item.headImage" mode=""></image>
</view>
<view class="info">
<view class="name">
{{ item.nickName }}
<view
v-if="item.employAhthenticationCompany.career">
{{ item.employAhthenticationCompany.career }}
</view>
</view>
<view class="tips">
<!-- 湖南江海国际经济技术合作有限公司 -->
{{ item.employAhthenticationCompany.companyName }}
</view>
</view>
<view class="right">
<!-- 一个小时前 -->
</view>
</view>
<view class="item"
:key="index"
@click.stop="$utils.navigateTo('/pages_order/work/workDetail?id=' + t.id)"
v-if="index < 2"
v-for="(t, index) in item.employJobList">
<view class="top">
<view class="title">
{{ t.title }}
</view>
<view class="price"
v-if="t.salaryLow > 1000">
<text>
{{ (t.salaryLow / 1000).toFixed(0) }}
</text>
<text
v-if="t.salaryUp">
-{{ (t.salaryUp / 1000).toFixed(0) }}
</text>
K
</view>
<view class="price" v-else>
<text>{{ t.salaryLow }}</text>
<text
v-if="t.salaryUp">-{{ t.salaryUp }}</text>
</view>
</view>
<view class="bottom">
<view class="address">
长沙 | {{ t.workAge }} | {{ t.qulification }}
</view>
<view class="time">
{{ $dayjs(t.createTime).format('YYYY-MM-DD') }}
</view>
</view>
</view>
<view class="more"
v-if="item.jobNum > 2">
查看全部{{ item.jobNum }}个职位
</view>
</view>
</template>
<script>
export default {
props : ['item'],
data() {
return {
}
},
methods: {
}
}
</script>
<style scoped lang="scss">
.boss-item{
background-color: #fff;
border-radius: 20rpx;
.head {
display: flex;
align-items: center;
position: relative;
padding: 20rpx;
image {
width: 100%;
height: 100%;
}
.headImage {
width: 80rpx;
height: 80rpx;
background-size: 100% 100%;
overflow: hidden;
border-radius: 50%;
margin-right: 40rpx;
}
.info {
font-size: 28rpx;
.name {
display: flex;
padding-bottom: 10rpx;
view {
display: flex;
font-size: 24rpx;
align-items: center;
margin-left: 20rpx;
background: rgba($uni-color, 0.2);
color: $uni-color;
padding: 10rpx;
border-radius: 10rpx;
}
}
.tips {
font-size: 24rpx;
}
}
.right{
margin-left: auto;
font-size: 24rpx;
}
}
.item{
padding: 20rpx;
border-top: 1rpx solid #00000015;
.top{
display: flex;
justify-content: space-between;
font-weight: 900;
.title{
}
.price{
color: $uni-color;
}
}
.bottom{
display: flex;
justify-content: space-between;
align-items: flex-end;
font-size: 24rpx;
margin-top: 20rpx;
.time{
color: #999999;
}
}
}
.more{
padding: 20rpx;
text-align: center;
color: $uni-color;
font-size: 24rpx;
}
}
</style>