feat:修复样式

This commit is contained in:
2025-08-16 22:03:57 +08:00
parent b76691e5d4
commit 6ad1b0cb1a
3 changed files with 32 additions and 6 deletions
@@ -33,7 +33,8 @@
<view class="info_list_warp-mine">
<scroll-view scroll-y="true" @scrolltolower="loadMore(selInfo)" style="height:calc(100vh - 300rpx)">
<scroll-view scroll-y="true" @scrolltolower="loadMore(selInfo)" style="height: 100%;">
<view v-for="item in orderList" :key="item.id" class="purse_info_item-mine"
v-if="orderList && orderList.length !== 0">
<view class="purse_info_left">
@@ -197,7 +198,7 @@ export default {
key: "totalValue"
},
{
name: "今日商城贡献值",
name: "商城日贡献",
key: "todayMallValue"
},
{
@@ -411,9 +412,13 @@ export default {
<style lang="scss">
.mine_purse_log_warp {
height: calc(100vh - 58rpx);
height: calc(100vh - var(--status-bar-height));
overflow-y: hidden;
.info_warp {
height: calc(100% - 165rpx);
}
.info_title_warp {
display: flex;
justify-content: space-around;
@@ -452,20 +457,28 @@ export default {
.info_center_warp {
display: flex;
justify-content: space-between;
padding: 32rpx;
padding: 32rpx 24rpx;
.info_center_warp-item {
flex: 1;
min-width: 25%;
.info_center_warp-item-top {
font-weight: bold;
font-size: 36rpx;
color: #333333;
text-align: center;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.info_center_warp-item-bottom {
font-size: 26rpx;
color: #999999;
margin-top: 15rpx;
text-align: center;
}
}
@@ -473,6 +486,10 @@ export default {
.info_list_warp-mine {
padding: 44rpx 32rpx;
height: calc(100% - 180rpx - 24rpx - 83rpx - 10rpx);
// max-height: 100%;
.purse_info_item-mine {
display: flex;