🐞 fix(ID1000610): 修复我的页面的bug

🐞【fix】修复预估金额小数位的问题
🐞【fix】修复退出登录按钮样式异常的问题
This commit is contained in:
xuan 2022-10-17 10:57:58 +08:00
parent 52f070adda
commit 86cf09ec1c
3 changed files with 6 additions and 3 deletions

View File

@ -3,7 +3,7 @@
flex-flow: row nowrap;
justify-content: center;
align-items: center;
padding: 0 80px;
padding: 0 30px;
height: 72px;
border: 1px solid $color_main;
background-color: #fff;

View File

@ -22,7 +22,7 @@ export default memo<PropsType>((props) => {
<Text className={styles.moneyText}></Text>
<Text className={styles.moneyNumber}>
<Text className={styles.unit}>¥</Text>
{amount}
{amount.toFixed(2)}
</Text>
</View>
<View className={styles.bottomRight}>

View File

@ -39,7 +39,8 @@ page{
.left {
}
.middle {
margin: 0 40px;
max-width: 40%;
padding: 0 40px;
flex: 1 1 auto;
}
.right {
@ -58,11 +59,13 @@ page{
display: block;
font-size: 36px;
font-weight: 600;
@include common_ellipsis()
}
.userno {
display: block;
font-size: 28px;
color: $color_font_two;
@include common_ellipsis()
}
.userTitle {
color: #626262;