YZProjectCloud/yanzhu-ui-app/pages_loader/pages/work/deilorder.vue

81 lines
1.7 KiB
Vue
Raw Permalink Normal View History

2024-08-17 12:11:19 +08:00
<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>