YZProjectCloud/yanzhu-ui-app/pages_loader/pages/listdeil/index.vue

80 lines
1.6 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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">
</style>