diff --git a/service/Application/Service/OrderService.class.php b/service/Application/Service/OrderService.class.php index e6b97b8fa..dc517431a 100755 --- a/service/Application/Service/OrderService.class.php +++ b/service/Application/Service/OrderService.class.php @@ -84,6 +84,7 @@ class OrderService if(isset($ret['code']) && $ret['code'] == 0) { // 非线上支付处理 + $params['user']['user_name_view'] = '用户-'.$params['user']['user_name_view']; self::OrderPaymentUnderLine([ 'order' => $order, 'payment' => $payment[0], @@ -181,7 +182,7 @@ class OrderService 'pay' => [ 'trade_no' => '', 'subject' => isset($params['params']['subject']) ? $params['params']['subject'] : '订单支付', - 'buyer_user' => '用户-'.$params['user']['user_name_view'], + 'buyer_user' => $params['user']['user_name_view'], 'pay_price' => $params['order']['total_price'], ], ]; diff --git a/service/Public/Admin/Default/Css/Order.css b/service/Public/Admin/Default/Css/Order.css index a3b07e2ed..7259d1183 100755 --- a/service/Public/Admin/Default/Css/Order.css +++ b/service/Public/Admin/Default/Css/Order.css @@ -17,7 +17,7 @@ .view-operation button { margin: 2px 0px; } } -.am-table .th-goods { width: 20%; } +.am-table .th-goods { width: 30%; } .am-table .goods-images { width: 60px; height: 60px; float: left; margin-right: 5px; } .am-table .th-receive-address { width: 15%; } .am-table .goods-item { padding: 5px 0; }