|
|
@@ -108,11 +108,25 @@ class ApiNewCommissionPartner extends BaseController
|
|
|
$where["status"] = -1;
|
|
|
}
|
|
|
}
|
|
|
- var_dump($where);
|
|
|
$selectParams["where"] = $where;
|
|
|
$data = $this->partnerTool->getPartnerApplyCashList($this->customerData["id"],$selectParams);
|
|
|
parent::sendOutput($data);
|
|
|
}
|
|
|
+ /**
|
|
|
+ * 获取提现详情
|
|
|
+ */
|
|
|
+ public function getPartnerApplyCashInfo(){
|
|
|
+ $params = $this->request->getRawJson();
|
|
|
+ if(empty($params) || empty($params["id"])){
|
|
|
+ parent::sendOutput('参数为空', ErrorCode::$paramError);
|
|
|
+ }
|
|
|
+ $where["id"] = $params["id"];
|
|
|
+ $selectParams["where"] = $where;
|
|
|
+ $data = $this->partnerTool->getPartnerApplyCashInfo($this->customerData["id"],$selectParams);
|
|
|
+ parent::sendOutput($data);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
public function getPartnerCashType(){
|
|
|
$data = $this->partnerTool->getBankType(1);
|
|
|
parent::sendOutput($data);
|