This commit is contained in:
pikachu
2021-08-11 21:32:54 +08:00
9 changed files with 67 additions and 20 deletions

View File

@@ -1,4 +1,3 @@
$theme_color: #804ed1;
//自动移滚动条样式

View File

@@ -233,6 +233,10 @@
orderInfo.order.freightPrice | unitPrice("¥")
}}</span>
</li>
<li v-if="orderInfo.order.priceDetailDTO.updatePrice">
<span class="label">修改金额</span>
<span class="txt theme_color">¥{{ orderInfo.order.priceDetailDTO.updatePrice | unitPrice }}</span>
</li>
<li v-if="orderInfo.order.priceDetailDTO.payPoint != 0">
<span class="label">使用积分</span>
<span class="txt">{{
@@ -987,4 +991,7 @@ dl dt {
}
}
}
.theme_color{
color: $theme_color;
}
</style>