This commit is contained in:
cxc
2022-09-14 16:15:22 +08:00
parent f272e21b7c
commit f8ccdae9d8
25 changed files with 15243 additions and 4536 deletions

View File

@ -1,5 +1,10 @@
<template>
<view>
<view class="page-top">
<u-navbar title="个人中心" placeholder bgColor="transparent" :leftIcon="null" titleStyle="color:white">
</u-navbar>
</view>
<view class="sizedbox" style="height: 88rpx;"></view>
<view class="avatar_name">
<view class="avatar">
<image src="../../static/personal/avatar_sample.png" mode=""></image>
@ -92,8 +97,16 @@
</script>
<style lang="scss">
.page-top {
z-index: 99;
background: linear-gradient(to top right, #496df6, #2e9ee8);
position: fixed;
width: 100%;
top: 0;
}
.avatar_name {
border: 1px solid rgb(186, 186, 186);
border-bottom: 2rpx solid #f4f4f4;
display: flex;
align-items: center;
height: 180rpx;
@ -119,8 +132,9 @@
.user-info-item {
display: flex;
height: 120rpx;
padding-left: 20rpx;
align-items: center;
border: 1px solid #bbb;
border-bottom: 2rpx solid #f4f4f4;
}
}
</style>