订单管理优化

This commit is contained in:
gongfuxiang
2018-11-30 00:17:27 +08:00
parent 81400b8e30
commit 6336eacb60
5 changed files with 27 additions and 20 deletions

View File

@ -136,6 +136,9 @@ class OrderController extends CommonController
// 支付状态
$v['pay_status_text'] = $common_order_pay_status[$v['pay_status']]['name'];
// 支付方式
$v['payment_name'] = ($v['status'] <= 1) ? null : ResourcesService::OrderPaymentName($v['id']);
// 快递公司
$v['express_name'] = ResourcesService::ExpressName($v['express_id']);