|
|
@@ -335,6 +335,10 @@ class RefundController extends BaseController
|
|
|
if (!empty($shopAdminId)) {
|
|
|
$where['shopAdminId'] = $shopAdminId;
|
|
|
}
|
|
|
+ $status = $get['status'] ?? -1;
|
|
|
+ if ($status > -1) {
|
|
|
+ $where['status'] = $status;
|
|
|
+ }
|
|
|
$list = RefundOrderClass::getOrderList($where);
|
|
|
util::success($list);
|
|
|
}
|