|
|
@@ -20,6 +20,7 @@ use app\adminapi\controller\BaseAdminController;
|
|
|
use app\adminapi\lists\external\DouyinOrderLists;
|
|
|
use app\adminapi\logic\external\DouyinOrderLogic;
|
|
|
use app\adminapi\validate\external\DouyinOrderValidate;
|
|
|
+use app\api\service\DouYinService;
|
|
|
|
|
|
|
|
|
/**
|
|
|
@@ -103,6 +104,11 @@ class DouyinOrderController extends BaseAdminController
|
|
|
$result = DouyinOrderLogic::detail($params);
|
|
|
return $this->data($result);
|
|
|
}
|
|
|
-
|
|
|
+ public function refundExamine()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ $result = DouYinService::refundExamine($params);
|
|
|
+ return $this->data($result);
|
|
|
+ }
|
|
|
|
|
|
}
|