|
@@ -7,22 +7,24 @@
|
|
|
|
|
|
<div class="info-row">
|
|
|
<div class="avatar-section">
|
|
|
- <img src="@/assets/avart.png" class="avatar" alt="用户头像" />
|
|
|
-
|
|
|
- <div style="display: flex; flex-direction: column; align-items: flex-start;margin-left: 10px;color: #fff;">
|
|
|
- <span class="name">{{ userInfo.nickname }}</span>
|
|
|
- <span class="value">{{ userInfo.mobile }}</span>
|
|
|
+ <div class="avatar">
|
|
|
+ <img src="@/assets/hongqi.png" alt="红旗">
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div style="display: flex; flex-direction: column; align-items: flex-start;margin-left: 10px;color: #fff;">
|
|
|
+ <span class="name">{{ userInfo.nickname }}</span>
|
|
|
+ <span class="value">{{ userInfo.mobile }}</span>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
+ <div class="sign-btn" @click="goToSignin">
|
|
|
+ <img src="@/assets/sign.png" style="width: 60px;height: 50px;" alt="签到" />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- <div class="info-row">
|
|
|
+ <span class="label">邀请码</span>
|
|
|
+ <span class="value">{{ userInfo.salt }}</span>
|
|
|
+ </div> -->
|
|
|
</div>
|
|
|
- <div class="sign-btn" @click="goToSignin">
|
|
|
- <img src="@/assets/sign.png" style="width: 60px;height: 50px;" alt="签到" />
|
|
|
- </div>
|
|
|
- </div>
|
|
|
- <!-- <div class="info-row">
|
|
|
- <span class="label">邀请码</span>
|
|
|
- <span class="value">{{ userInfo.salt }}</span>
|
|
|
- </div> -->
|
|
|
- </div>
|
|
|
|
|
|
<!-- 第二个银行卡板块 -->
|
|
|
<!-- <div class="bank-card">
|
|
@@ -286,28 +288,39 @@ export default {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
+ margin-top: -20px;
|
|
|
/* position: absolute;
|
|
|
top: -40px;
|
|
|
left: 20px; */
|
|
|
}
|
|
|
|
|
|
.avatar {
|
|
|
- width: 50px;
|
|
|
- height: 50px;
|
|
|
- object-fit: cover;
|
|
|
+ width: 80px;
|
|
|
+ height: 80px;
|
|
|
+ background: #fff;
|
|
|
border-radius: 50%;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ margin-right: 15px;
|
|
|
+}
|
|
|
+
|
|
|
+.avatar img {
|
|
|
+ width: 40px;
|
|
|
+ height: 40px;
|
|
|
+ object-fit: contain;
|
|
|
}
|
|
|
|
|
|
.info-row {
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|
|
|
align-items: center;
|
|
|
- margin-bottom: 15px;
|
|
|
+ margin-bottom: 5px;
|
|
|
font-size: 16px;
|
|
|
}
|
|
|
|
|
|
.name {
|
|
|
- font-size: 18px;
|
|
|
+ font-size: 20px;
|
|
|
font-weight: bold;
|
|
|
}
|
|
|
|
|
@@ -323,6 +336,7 @@ export default {
|
|
|
.value {
|
|
|
color: #fff;
|
|
|
margin-top: 5px;
|
|
|
+ font-size: 20px;
|
|
|
}
|
|
|
|
|
|
.bank-card {
|