This commit is contained in:
gongfuxiang
2018-11-23 02:20:28 +08:00
parent 7dacfecc7e
commit b18dadfd62
17 changed files with 155 additions and 56 deletions

View File

@ -65,11 +65,15 @@ class OrderController extends CommonController
);
$data = OrderService::OrderList($data_params);
// 支付方式
$payment_list = ResourcesService::BuyPaymentList(['is_enable'=>1, 'is_open_user'=>1]);
// 返回数据
$result = [
'total' => $total,
'page_total' => $page_total,
'data' => $data['data'],
'payment_list' => $payment_list,
];
$this->ajaxReturn(L('common_operation_success'), 0, $result);
}