优化部分页面以及逻辑

This commit is contained in:
lemon橪
2021-07-15 15:10:27 +08:00
parent 2df8be328f
commit fc9b7bac16
20 changed files with 871 additions and 94 deletions

View File

@@ -39,9 +39,9 @@
<view class="btn-view u-flex u-row-between">
<view class="description">
<!-- 等待付款 -->
<text v-if="order.payStatus === 'PAID'">已付金额</text>
<text v-else>应付金额</text>
<text class="price">{{ order.flowPrice | unitPrice }}</text>
<div v-if="order.payStatus === 'PAID'">已付金额:</div>
<div v-else>应付金额:</div>
<div class="price">{{ order.flowPrice | unitPrice }}</div>
</view>
<view>
<!-- 全部 -->
@@ -623,9 +623,10 @@ page,
font-size: 26rpx;
.description {
display: flex;
color: #909399;
size: 25rpx;
size: 24rpx;
flex: 1;
.price {
color: $main-color;
}