|
@@ -74,6 +74,41 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
+
|
|
|
+ <view class="user-info">
|
|
|
+ <text class="title-max">简介</text>
|
|
|
+ <view class="tag-box">
|
|
|
+ <text class="title-min">印象标签</text>
|
|
|
+ <view class="tag-list">
|
|
|
+ <view class="tag">标签1</view>
|
|
|
+ <view class="tag">标签1</view>
|
|
|
+ <view class="tag">标签1</view>
|
|
|
+ <view class="tag">标签1</view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="descript-box">
|
|
|
+ <text class="title-min">自我介绍</text>
|
|
|
+ <text class="descript">自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍自我介绍</text>
|
|
|
+ </view>
|
|
|
+ <view class="image-box">
|
|
|
+ <text class="title-min">照片墙</text>
|
|
|
+ <view class="image">
|
|
|
+ <u--image width="100%" :lazy-load="true" src="https://ccyosg20230413.obs.cn-east-3.myhuaweicloud.com:443/202405131715570665544B7eaa08cb.png" radius="5"></u--image>
|
|
|
+ </view>
|
|
|
+ <view class="image">
|
|
|
+ <u--image width="100%" :lazy-load="true" src="https://ccyosg20230413.obs.cn-east-3.myhuaweicloud.com:443/202405131715570665544B7eaa08cb.png" radius="5"></u--image>
|
|
|
+ </view>
|
|
|
+ <view class="image">
|
|
|
+ <u--image width="100%" :lazy-load="true" src="https://ccyosg20230413.obs.cn-east-3.myhuaweicloud.com:443/202405131715570665544B7eaa08cb.png" radius="5"></u--image>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="footer">
|
|
|
+ <navigator class="but" url="#">
|
|
|
+ <text>修改名片</text>
|
|
|
+ </navigator>
|
|
|
+ </view>
|
|
|
|
|
|
<u-popup :show="shareShow" mode="bottom" @close="shareShow=false">
|
|
|
<view class="share-box">
|
|
@@ -320,7 +355,7 @@ export default {
|
|
|
.card-handle {
|
|
|
padding: 50px 10px 20px 10px;
|
|
|
background: #ffffff;
|
|
|
- margin-top: 25px;
|
|
|
+ margin-top: 15px;
|
|
|
.top {
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
@@ -399,6 +434,98 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+ .user-info {
|
|
|
+ padding: 12px 10px 70px 10px;
|
|
|
+ font-family: PingFang SC, PingFang SC;
|
|
|
+ background: #ffffff;
|
|
|
+ margin-top: 10px;
|
|
|
+ .title-min{
|
|
|
+ margin-bottom: 10px;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #666666;
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+ .title-max {
|
|
|
+ margin-bottom: 21px;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #333333;
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+ .tag-box {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ margin-bottom: 20px;
|
|
|
+ .title-min{}
|
|
|
+ .tag-list{
|
|
|
+ display: flex;
|
|
|
+ align-content: center;
|
|
|
+ align-items: center;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ .tag {
|
|
|
+ margin-right: 10px;
|
|
|
+ padding: 6px 10px;
|
|
|
+ background: #F2F2F2;
|
|
|
+ border-radius: 5px 5px 5px 5px;
|
|
|
+ margin-right: 10px;
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #333333;
|
|
|
+ &:last-child {
|
|
|
+ margin-right: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .descript-box {
|
|
|
+ margin-bottom: 20px;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ .descript {
|
|
|
+ font-weight: 400;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #666666;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .image-box {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ .image {
|
|
|
+ width: 100%;
|
|
|
+ height: 240px;
|
|
|
+ margin-bottom: 10px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .footer {
|
|
|
+ display: flex;
|
|
|
+ position: fixed;
|
|
|
+ bottom: 0;
|
|
|
+ left: 0;
|
|
|
+ width: 375px;
|
|
|
+ height: 64px;
|
|
|
+ background: #FFFFFF;
|
|
|
+ box-shadow: 0px -2px 6px 1px rgba(0, 0, 0, 0.16);
|
|
|
+ box-sizing: border-box;
|
|
|
+ z-index: 9999999;
|
|
|
+ padding: 10px;
|
|
|
+ .but {
|
|
|
+ width: 355px;
|
|
|
+ height: 45px;
|
|
|
+ font-family: PingFang SC, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #FFFFFF;
|
|
|
+ background: #C30D23;
|
|
|
+ border-radius: 5px 5px 5px 5px;
|
|
|
+ border: 1px solid #FFFFFF;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ align-content: center;
|
|
|
+ justify-content: space-evenly;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.share-box {
|