From 2cf2683ed2da243a91793dfd2e250b678f1a7da4 Mon Sep 17 00:00:00 2001 From: devil_gong Date: Tue, 20 Nov 2018 17:42:23 +0800 Subject: [PATCH] user --- alipay/pages/user-order/user-order.axml | 4 ++-- service/Application/Service/OrderService.class.php | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/alipay/pages/user-order/user-order.axml b/alipay/pages/user-order/user-order.axml index 09f331493..925a3fbea 100755 --- a/alipay/pages/user-order/user-order.axml +++ b/alipay/pages/user-order/user-order.axml @@ -12,10 +12,10 @@ {{item.add_time}} - {{item.status_text}} + {{item.status_name}} - + {{items.title}} diff --git a/service/Application/Service/OrderService.class.php b/service/Application/Service/OrderService.class.php index f2df9b6b0..e2890548c 100755 --- a/service/Application/Service/OrderService.class.php +++ b/service/Application/Service/OrderService.class.php @@ -606,6 +606,9 @@ class OrderService } $v['items'] = $items; $v['items_count'] = count($items); + + // 描述 + $v['describe'] = '共'.$v['items_count'].'件 合计:¥'.$v['total_price'].'元'; } } }