81 lines
1.7 KiB
Vue
81 lines
1.7 KiB
Vue
|
<template>
|
|||
|
<view>
|
|||
|
<navbar titlenav="人才详情"></navbar>
|
|||
|
<view style="margin: 40rpx;line-height: 60rpx;">
|
|||
|
<view class="" style="display: flex;justify-content: space-between;align-items: center;">
|
|||
|
<view class="">
|
|||
|
<view class="">
|
|||
|
姓名:张三
|
|||
|
</view>
|
|||
|
<view class="">
|
|||
|
学历:本科
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="">
|
|||
|
<view class="">
|
|||
|
年龄:25岁
|
|||
|
</view>
|
|||
|
<view class="">
|
|||
|
工作地:西安
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="">
|
|||
|
<u-avatar :src="avatarsrc" size="50"></u-avatar>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view class="" style="display: flex;">
|
|||
|
<view class="">
|
|||
|
意向岗位:JAVA开发工程师
|
|||
|
</view>
|
|||
|
<view style="margin-left: 40rpx;">
|
|||
|
工作年限:3年
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="margin:60rpx 0;line-height: 40rpx;">
|
|||
|
<view class="">
|
|||
|
最近一份工作经历:
|
|||
|
</view>
|
|||
|
<view>
|
|||
|
百易信息技术 JAVA开发工程师 在职
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="margin:60rpx 0;line-height: 40rpx;">
|
|||
|
<view class="">
|
|||
|
教育背景:
|
|||
|
</view>
|
|||
|
<view>
|
|||
|
2014-2018 北京大学 本科
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="margin:60rpx 0;line-height: 40rpx;">
|
|||
|
<view class="">
|
|||
|
个人优势:
|
|||
|
</view>
|
|||
|
<view>
|
|||
|
xxxxxxxxxxx
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
<view style="position: fixed;bottom: 0;left: 0;width: 100%;padding:40rpx 140rpx;">
|
|||
|
<u-button text="邀约" type="success" shape="circle"></u-button>
|
|||
|
</view>
|
|||
|
</view>
|
|||
|
</template>
|
|||
|
|
|||
|
<script>
|
|||
|
export default {
|
|||
|
data() {
|
|||
|
return {
|
|||
|
avatarsrc: '/static/nav.png',
|
|||
|
};
|
|||
|
},
|
|||
|
onLoad(e) {
|
|||
|
|
|||
|
},
|
|||
|
}
|
|||
|
</script>
|
|||
|
|
|||
|
<style lang="scss" scoped>
|
|||
|
|
|||
|
</style>
|