123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249 |
- <template>
- <view class="content">
- <view class="top hflex acenter jcenter">
- <block v-for="(item,index) in top" :key="index">
- <view class="top_item" :class="active == index ? 'active' :''" @click="changeTop(index)">{{item.name}}</view>
- </block>
- </view>
- <view class="list" v-if="active == 0">
- <block v-for="(item,index) in pageList" :key="index">
- <view class="list_item">
- <view class="hflex acenter jbetween">
- <view class="item_title">{{item.title}}</view>
- <view class="item_blue">{{item.salary}}</view>
- </view>
- <view class="hflex acenter" style="padding: 20rpx 0 24rpx;">
- <view class="item_box">{{item.city}}</view>
- <view class="item_box">{{item.education}}</view>
- <view class="item_box">{{item.experience}}</view>
- </view>
- <view class="item_name">{{item.company_name}}</view>
- <view class="hflex acenter jbetween" style="padding-top: 16rpx;">
- <view class="hflex acenter">
- <image class="item_avatar" mode="aspectFill" :src="item.user.avatar"></image>
- <view class="user_name">{{item.user.name}}·{{item.user.position}}</view>
- </view>
- <view class="user_right">{{item.date}}</view>
- </view>
- </view>
- </block>
- </view>
- <view class="list" v-if="active == 1">
- <block v-for="(item,index) in pageList" :key="index">
- <view class="list_item hflex jbetween" @click="toDetail2(item.id)">
- <view class="hflex">
- <image class="item_avatar1" :src="item.avatar"></image>
- <view class="item_right1 vflex">
- <u--text class="item_title" mode="name" :text="item.name" format="encrypt"></u--text>
- <view class="hflex acenter">
- <view class="text_style1">{{item.city}}</view>
- <view style="padding: 0 8rpx;">|</view>
- <view class="text_style1">{{item.age}}</view>
- <view style="padding: 0 8rpx;">|</view>
- <view class="text_style1">{{item.year}}</view>
- <view style="padding: 0 8rpx;">|</view>
- <view class="text_style1">{{item.education}}</view>
- </view>
- <view class="item_box1 hflex acenter">应聘岗位<view style="padding: 0 8rpx;">|</view>{{item.postion}}</view>
- </view>
- </view>
- <view class="item_btn1">打招呼</view>
- </view>
- </block>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- top: [
- {
- name: '招聘信息',
- },
- {
- name: '求职信息'
- }
- ],
- active: 0,
- pageList: [
- {
- id: 0,
- title: '船舶设计师',
- salary: '13-15K',
- monthly: '13',
- city: '北京',
- education: '本科',
- experience: '经验不限',
- company_name: '北京文化旅游产业发展集团有限公司',
- user: {
- avatar: '/static/images/mine/avatar1.jpg',
- name: '江女士',
- position: '行政总监',
- city: '北京市',
- area: '东城区',
- },
- avatar: '/static/images/mine/avatar1.jpg',
- name: '张三',
- age: '27',
- year: '5年',
- postion: '船舶工程师',
- },
- {
- id: 1,
- title: '船舶设计师',
- salary: '13-15K',
- monthly: '13',
- city: '北京',
- education: '本科',
- experience: '经验不限',
- company_name: '北京文化旅游产业发展集团有限公司',
- user: {
- avatar: '/static/images/mine/avatar2.jpg',
- name: '江女士',
- position: '行政总监',
- city: '北京市',
- area: '东城区',
- },
- avatar: '/static/images/mine/avatar2.jpg',
- name: '李四',
- age: '27',
- year: '5年',
- postion: '船舶工程师',
- }
- ],
- }
- },
- onLoad() {
- that = this
- },
- methods: {
- changeTop(index) {
- that.active = index
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- padding: 0 30rpx;
- background: #F4F4F4;
- .top {
- width: 100%;
- height: 80rpx;
- background: #FFFFFF;
- border-radius: 40rpx;
- font-size: 30rpx;
- font-weight: 500;
- color: #222222;
- margin-top: 20rpx;
- .top_item {
- width: 50%;
- text-align: center;
- }
- .active {
- width: 340rpx;
- height: 68rpx;
- background: #506DFF;
- border-radius: 36px;
- color: #FFFFFF;
- line-height: 68rpx;
- }
- }
- .list {
- width: 100%;
- .list_item {
- background-color: #fff;
- width: 100%;
- padding: 28rpx 0 20rpx;
- box-sizing: border-box;
- padding: 20rpx;
- border-radius: 20rpx;
- // border-top: 1rpx solid #F4F4F4;
- margin-top: 20rpx;
- .item_title {
- font-size: 32rpx;
- font-weight: 600;
- color: #222222;
- }
- .item_blue {
- font-size: 32rpx;
- font-weight: bold;
- color: #506DFF;
- }
- .item_box {
- height: 40rpx;
- background: #F0F2F6;
- border-radius: 2px;
- box-sizing: border-box;
- padding: 4rpx 18rpx;
- font-size: 22rpx;
- font-weight: 400;
- color: #444444;
- margin-right: 20rpx;
- }
- .item_name {
- font-size: 24rpx;
- font-weight: 400;
- color: #666666;
- }
- .item_avatar {
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- margin-right: 12rpx;
- }
- .item_avatar1 {
- width: 88rpx;
- height: 88rpx;
- border-radius: 50%;
- margin-right: 20rpx;
- }
- .item_right1 {
-
- }
- .text_style1 {
- font-size: 22rpx;
- font-weight: 400;
- color: #666666;
- padding: 12rpx 0;
- }
- .item_box1 {
- margin-top: 8rpx;
- background: #EDF0FF;
- border-radius: 8rpx;
- box-sizing: border-box;
- padding: 4rpx 16rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #506DFF;
- }
- .item_btn1 {
- width: 140rpx;
- height: 52rpx;
- background: #F1F3FF;
- border-radius: 28rpx;
- font-size: 26rpx;
- font-weight: 500;
- color: #506DFF;
- line-height: 52rpx;
- text-align: center;
- }
- .user_name {
- font-size: 20rpx;
- font-weight: 400;
- color: #333333;
- }
- .user_right {
- font-size: 20rpx;
- font-weight: 400;
- color: #A1A1A1;
- }
- }
- }
- }
- </style>
|