|
@@ -184,11 +184,11 @@ class Index extends Base
|
|
|
}
|
|
|
|
|
|
//有赞订单取消记录
|
|
|
- public function refundOrderList()
|
|
|
+ public function closeOrderList()
|
|
|
{
|
|
|
- $param = $this->request->filter('trim')->only(['page' => 1, 'size' => 15, 'start_date' => '', 'end_date' => '', 'oid' => ''], 'post');
|
|
|
+ $param = $this->request->filter('trim')->only(['page' => 1, 'size' => 15, 'start_date' => '', 'end_date' => '', 'tid' => ''], 'post');
|
|
|
|
|
|
- $res = curl_request(config('app.yz_domain') . 'api/yz_get_refund_order_list', $param);
|
|
|
+ $res = curl_request(config('app.yz_domain') . 'api/yz_close_order_list', $param);
|
|
|
$res = json_decode($res, true);
|
|
|
if ($res['code'] == 0) return app_show(0, '请求成功', $res['data']);
|
|
|
else return error_show(1005, $res['message']);
|