Commit 04a5c133 authored by Facius's avatar Facius

履约记录微调

parent c3cb5637
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<text>履约记录</text> <text>履约记录</text>
</view> </view>
<view v-if="orderRecords.length == 0" class="no-record-view">当前暂无履约记录</view> <view v-if="orderRecords.length == 0" class="no-record-view">当前暂无履约记录</view>
<view v-else class="record-list-view"> <view v-else :class="['record-list-view', {'short': orderRecords.length <= showLenght}]">
<view class="record-right-view"> <view class="record-right-view">
<view class="dashed-line-view"></view> <view class="dashed-line-view"></view>
<view class="order-list"> <view class="order-list">
...@@ -99,8 +99,10 @@ ...@@ -99,8 +99,10 @@
.record-list-view { .record-list-view {
position: relative; position: relative;
&.short {
padding-bottom: 30rpx;
}
.record-right-view { .record-right-view {
position: relative; position: relative;
display: flex; display: flex;
...@@ -189,7 +191,7 @@ ...@@ -189,7 +191,7 @@
text-align: center; text-align: center;
color: #2272FF; color: #2272FF;
font-size: 26rpx; font-size: 26rpx;
margin-top: 30rpx; padding-top: 30rpx;
padding-bottom: 30rpx; padding-bottom: 30rpx;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment