From 5a36e66f951b7d5d8aa4dcf479b08740375660c4 Mon Sep 17 00:00:00 2001 From: woody Date: Tue, 16 Sep 2025 11:07:47 +0800 Subject: [PATCH] =?UTF-8?q?fix(order):=20=E8=AE=A2=E5=8D=95=E9=87=91?= =?UTF-8?q?=E9=A2=9D=E5=88=97=E8=A1=A8=E6=B7=BB=E5=8A=A0=E8=AE=A2=E5=8D=95?= =?UTF-8?q?=E6=80=BB=E9=87=91=E9=A2=9D=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/mine/order/index.vue | 42 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 40 insertions(+), 2 deletions(-) diff --git a/pages/mine/order/index.vue b/pages/mine/order/index.vue index 45961ba..1eecd4f 100644 --- a/pages/mine/order/index.vue +++ b/pages/mine/order/index.vue @@ -62,9 +62,17 @@ x{{ ctem.quantity }} - {{ '创建时间' }}:{{ item.creationTime }} + + {{ '创建时间' }}:{{ item.creationTime }} + + 订单金额: + {{ + item.orderAmount | numberToCurrency | isLocal + }} + + - + @@ -780,6 +788,36 @@ export default { color: #333333; } +.order-info-row { + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 16rpx; + padding-top: 16rpx; + border-top: 1rpx solid #f5f5f5; +} + +.order-amount-highlight { + font-family: Source Han Sans CN; + color: #f82c1a; + // background: rgba(248, 44, 26, 0.08); + // padding: 8rpx 16rpx; + // border-radius: 8rpx; + display: flex; + align-items: baseline; +} + +.amount-label { + font-size: 22rpx; + font-weight: 400; + margin-right: 4rpx; +} + +.amount-value { + font-size: 32rpx; + font-weight: 700; +} + .xian { background: #eee; height: 2rpx;