358 lines
7.6 KiB
Vue
358 lines
7.6 KiB
Vue
<template>
|
||
<view class="page-c">
|
||
<tn-nav-bar :isBack="false" backTitle="" :bottomShadow="true" backgroundColor="#FFFFFF">
|
||
<view class="custom-nav tn-flex tn-flex-col-center tn-flex-row-left">
|
||
<view style="padding-left: 15rpx;" @click="goBack()">
|
||
<text class="tn-icon-left" style="font-size: 40rpx;"></text>
|
||
</view>
|
||
<view class="tn-margin-top"
|
||
style=";text-shadow: 1rpx 0 0 #FFF, 0 1rpx 0 #FFF, -1rpx 0 0 #FFF , 0 -1rpx 0 #FFF;">
|
||
<tn-tabs :list="[{name:'我的名片'}]" :current="topCurrent" activeColor="#000" :bold="false"
|
||
:fontSize="36"></tn-tabs>
|
||
</view>
|
||
</view>
|
||
</tn-nav-bar>
|
||
<!-- 顶部 -->
|
||
<view :style="{paddingTop: vuex_custom_bar_height +20+'px'}">
|
||
<view class="tn-strip-bottom">
|
||
<view class="slideshow">
|
||
<image src="/static/u1.jpg" style="width: 300rpx;border-radius: 50%;" mode="widthFix"></image>
|
||
</view>
|
||
<view class='tn-margin'>
|
||
<view class="tn-text-bold">
|
||
<text class='tn-text-xxl tn-padding-right'>朱荣梅</text>
|
||
<text class='tn-text-lg tn-color-gray'>康桥集团执行总裁</text>
|
||
</view>
|
||
<view class="tn-margin-top-lg">
|
||
<text class="tn-text-lg">微信:wechat123</text>
|
||
<text class="tn-icon-copy tn-color-blue tn-padding-left-xs"></text>
|
||
</view>
|
||
<view class="tn-margin-top-xs">
|
||
<text class="tn-text-lg">电话:180000000000</text>
|
||
<text class="tn-icon-phone tn-color-orange tn-padding-left-xs"></text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
|
||
|
||
|
||
|
||
<view class="king-list tn-margin-top-sm">
|
||
|
||
<view class="king-icon">
|
||
<text class='tn-icon-creative tn-color-white tn-text-lg tn-bg-blue tn-round tn-padding-xs'></text>
|
||
<text class='tn-text-xl tn-margin-left'>自我介绍</text>
|
||
</view>
|
||
<view class='king-item tn-color-red tn-icon-circle-fill'>
|
||
<view class="resume2">
|
||
<text class="">
|
||
“大道行思,取则行远”。自省、学习、拼搏、创新,我的人生信条既是对自身的激励和预警,也是康桥集团耕耘17载的概括和总结。
|
||
</text>
|
||
</view>
|
||
|
||
</view>
|
||
|
||
<view class="king-icon">
|
||
<text class='tn-icon-company tn-color-white tn-text-lg tn-bg-blue tn-round tn-padding-xs'></text>
|
||
<text class='tn-text-xl tn-margin-left'>公司介绍</text>
|
||
</view>
|
||
<view class='king-item tn-color-red tn-icon-circle-fill'>
|
||
<view>
|
||
<view class="resume2">
|
||
<text>康桥集团</text>
|
||
</view>
|
||
<view class="resume2">
|
||
<text>康桥集团成立于2002年,砥砺18载,始终向着“做中国备受尊敬的企业”逐梦前行。目前已成为涵盖房地产开发、产业文旅、大服务体系包括(大社区,大教育,大健康,大商业,租赁住宅)、代建、装饰等领域发展的全产业链大型企业集团,形成了“一个主体两翼发展”的发展战略,围绕传统地产开发的主体,构建产业文旅、大服务两翼发展的美好生活服务商。</text>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
|
||
|
||
</view>
|
||
</view>
|
||
|
||
<view class="">
|
||
<view class="icon15__item--icon tn-flex tn-flex-row-center tn-flex-col-center tn-shadow-blur button-2">
|
||
<button class="tn-button--clear-style" open-type="share" style="border-radius: 0;">
|
||
<view class="tn-icon-send-fill tn-color-white"></view>
|
||
</button>
|
||
<!-- <view class="tn-icon-send-fill tn-color-white"></view> -->
|
||
</view>
|
||
</view>
|
||
|
||
|
||
<view class='tn-tabbar-height'></view>
|
||
|
||
<view class="bg-tabbar-shadow"></view>
|
||
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
data() {
|
||
return {
|
||
topCurrent: 0
|
||
}
|
||
},
|
||
|
||
onReady() {
|
||
|
||
},
|
||
methods: {
|
||
openUrl(url) {
|
||
uni.navigateTo({
|
||
url: url
|
||
})
|
||
},
|
||
goBack() {
|
||
if (getCurrentPages().length > 1) {
|
||
uni.navigateBack()
|
||
} else {
|
||
uni.redirectTo({
|
||
url: '/pages/index/index'
|
||
})
|
||
|
||
}
|
||
}
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
.page-c {
|
||
background-color: #EBF4F7;
|
||
}
|
||
|
||
/* 底部安全边距 start*/
|
||
.tn-tabbar-height {
|
||
min-height: 120rpx;
|
||
height: calc(140rpx + env(safe-area-inset-bottom) / 2);
|
||
height: calc(140rpx + constant(safe-area-inset-bottom));
|
||
}
|
||
|
||
.tn-footerfixed {
|
||
position: fixed;
|
||
width: 100%;
|
||
bottom: calc(180rpx + env(safe-area-inset-bottom));
|
||
z-index: 1024;
|
||
box-shadow: 0 1rpx 6rpx rgba(0, 0, 0, 0);
|
||
|
||
}
|
||
|
||
/* 按钮 */
|
||
.button-1 {
|
||
background-color: rgba(0, 0, 0, 0.15);
|
||
position: fixed;
|
||
/* bottom:200rpx;
|
||
right: 20rpx; */
|
||
bottom: 27%;
|
||
right: 30rpx;
|
||
z-index: 1001;
|
||
border-radius: 100px;
|
||
}
|
||
|
||
.button-2 {
|
||
background-color: rgba(0, 0, 0, 0.15);
|
||
position: fixed;
|
||
/* bottom:200rpx;
|
||
right: 20rpx; */
|
||
bottom: 18%;
|
||
right: 30rpx;
|
||
z-index: 1001;
|
||
border-radius: 100px;
|
||
}
|
||
|
||
/* 图标容器15 start */
|
||
.icon15 {
|
||
&__item {
|
||
width: 30%;
|
||
|
||
border-radius: 10rpx;
|
||
padding: 30rpx;
|
||
margin: 20rpx 10rpx;
|
||
transform: scale(1);
|
||
transition: transform 0.3s linear;
|
||
transform-origin: center center;
|
||
|
||
&--icon {
|
||
width: 100rpx;
|
||
height: 100rpx;
|
||
font-size: 50rpx;
|
||
border-radius: 50%;
|
||
margin-bottom: 18rpx;
|
||
z-index: 1;
|
||
|
||
&::after {
|
||
content: " ";
|
||
position: absolute;
|
||
z-index: -1;
|
||
width: 100%;
|
||
height: 100%;
|
||
left: 0;
|
||
bottom: 0;
|
||
border-radius: inherit;
|
||
opacity: 1;
|
||
transform: scale(1, 1);
|
||
background-size: 100% 100%;
|
||
|
||
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
|
||
/* 相册 */
|
||
.slideshow {
|
||
overflow: hidden;
|
||
text-align: center;
|
||
}
|
||
|
||
|
||
/* 简历内容 */
|
||
.king-list {
|
||
display: block;
|
||
// background-color: #ffffff;
|
||
}
|
||
|
||
.king-list .king-icon {
|
||
width: 100%;
|
||
text-align: left;
|
||
padding: 20rpx 0 20rpx 37rpx;
|
||
font-size: 26rpx;
|
||
color: #888;
|
||
display: block;
|
||
}
|
||
|
||
.king-list>.king-item {
|
||
padding: 30rpx 30rpx 30rpx 120rpx;
|
||
position: relative;
|
||
display: block;
|
||
z-index: 0;
|
||
}
|
||
|
||
.king-list>.king-item::after {
|
||
content: "";
|
||
display: block;
|
||
position: absolute;
|
||
width: 1rpx;
|
||
background-color: #E6E6E6;
|
||
left: 60rpx;
|
||
height: 100%;
|
||
top: 0;
|
||
z-index: 8;
|
||
}
|
||
|
||
.king-list>.king-item::before {
|
||
display: block;
|
||
position: absolute;
|
||
top: 36rpx;
|
||
z-index: 9;
|
||
background-color: #ffffff;
|
||
width: 50rpx;
|
||
height: 50rpx;
|
||
text-align: center;
|
||
border: none;
|
||
line-height: 50rpx;
|
||
left: 36rpx;
|
||
}
|
||
|
||
|
||
/* 名片微调 */
|
||
.img-solid {
|
||
border: 1rpx solid #eee;
|
||
}
|
||
|
||
.share-img {
|
||
position: fixed;
|
||
/* padding: 10rpx; */
|
||
width: 100rpx;
|
||
height: 100rpx;
|
||
/* top: 680rpx; */
|
||
bottom: 200rpx;
|
||
right: 20rpx;
|
||
z-index: 1024;
|
||
opacity: 0.8;
|
||
box-shadow: 0rpx 8rpx 30rpx 0rpx rgba(0, 0, 0, 0.3);
|
||
border: none;
|
||
border: 6rpx solid rgba(255, 255, 255, 0);
|
||
}
|
||
|
||
.resume {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
padding-top: 10rpx;
|
||
border-radius: 6rpx;
|
||
color: #666;
|
||
line-height: 1.6;
|
||
}
|
||
|
||
.resume+.resume {
|
||
margin-top: 20rpx;
|
||
}
|
||
|
||
.resume2 {
|
||
padding-top: 10rpx;
|
||
border-radius: 6rpx;
|
||
display: block;
|
||
color: #666;
|
||
line-height: 1.6;
|
||
text-align: justify;
|
||
}
|
||
|
||
/* 间隔线 start*/
|
||
.tn-strip-bottom {
|
||
width: 100%;
|
||
border-bottom: 5rpx solid #ffffff;
|
||
}
|
||
|
||
/* 间隔线 end*/
|
||
|
||
|
||
.bg-img-cont {
|
||
background-size: cover;
|
||
background-position: center;
|
||
background-repeat: no-repeat;
|
||
height: 350rpx;
|
||
margin: 20rpx 0;
|
||
border-radius: 8rpx;
|
||
}
|
||
|
||
|
||
|
||
// .button-no {
|
||
// border: none;
|
||
// width: 100%;
|
||
// height: 100%;
|
||
// background-color: rgba(0, 0, 0, 0);
|
||
// }
|
||
|
||
|
||
/* 标签内容 start*/
|
||
.tn-tag-content {
|
||
&__item {
|
||
display: inline-block;
|
||
line-height: 45rpx;
|
||
padding: 10rpx 30rpx;
|
||
margin: 0rpx 20rpx 25rpx 0rpx;
|
||
|
||
&--prefix {
|
||
padding-right: 10rpx;
|
||
}
|
||
}
|
||
}
|
||
|
||
/* 标签内容 end*/
|
||
|
||
.see {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
padding-top: 10rpx;
|
||
border-radius: 6rpx;
|
||
color: #666;
|
||
line-height: 1.6;
|
||
}
|
||
</style> |