用户列表页面0.5

This commit is contained in:
WindowBird 2025-08-18 16:42:01 +08:00
parent 1fd0815a36
commit 101a08dde2

View File

@ -46,10 +46,10 @@
class="table-row" class="table-row"
> >
<text class="table-cell">{{ device.type }}</text> <text class="table-cell">{{ device.type }}</text>
<text class="table-cell">¥ {{ device.amount }}</text> <text class="table-cell amount-cell">¥ {{ device.amount }}</text>
<text class="table-cell">{{ device.rentDate }}</text> <text class="table-cell">{{ device.rentDate }}</text>
<text class="table-cell">{{ device.period }}</text> <text class="table-cell period-cell">{{ device.period }}</text>
<text class="table-cell">{{ device.expiryDate }}</text> <text class="table-cell expiry-cell">{{ device.expiryDate }}</text>
</view> </view>
</view> </view>
@ -198,7 +198,7 @@ export default {
align-items: center; align-items: center;
background: #f3f5f6; background: #f3f5f6;
border-radius: 999px; border-radius: 999px;
padding: 20rpx; padding: 20rpx 50rpx;
.search-input { .search-input {
padding: 0 20rpx; padding: 0 20rpx;
@ -270,14 +270,14 @@ export default {
} }
.amount { .amount {
font-size: 28rpx; font-size: 32rpx;
font-weight: 500; font-weight: 500;
padding-right: 78rpx; padding-right: 78rpx;
} }
.device-count { .device-count {
font-size: 24rpx; font-size: 32rpx;
font-weight: 500;
color: #666; color: #666;
} }
@ -312,6 +312,18 @@ export default {
text-align: center; text-align: center;
font-size: 24rpx; font-size: 24rpx;
color: #333; color: #333;
&.amount-cell {
color: #ff6b35;
}
&.period-cell {
color: #ff6b35;
}
&.expiry-cell {
color: #ff4757;
}
} }
.expand-btn { .expand-btn {
@ -319,7 +331,7 @@ export default {
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding: 20rpx 0; padding: 20rpx 0;
color: #007aff; //color: #007aff;
font-size: 28rpx; font-size: 28rpx;
.expand-text { .expand-text {
@ -332,6 +344,6 @@ export default {
} }
view { view {
border: red solid 1px; //border: red solid 1px;
} }
</style> </style>