宝体数据调用接口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

79 lines
2.0 KiB

<?php
namespace app\store\controller\apps\dealer;
use app\store\controller\Controller;
use app\store\model\dealer\Withdraw as WithdrawModel;
/**
* 分销商提现申请
* Class Setting
* @package app\store\controller\apps\dealer
*/
class Withdraw extends Controller
{
/**
* 提现记录列表
* @param int $user_id
* @param int $apply_status
* @param int $pay_type
* @param string $search
* @return mixed
* @throws \think\exception\DbException
*/
public function index($user_id = null, $apply_status = -1, $pay_type = -1, $search = '')
{
$model = new WithdrawModel;
return $this->fetch('index', [
'list' => $model->getList($user_id, $apply_status, $pay_type, $search)
]);
}
/**
* 提现审核
* @param $id
* @return array
* @throws \think\exception\DbException
*/
public function submit($id)
{
$model = WithdrawModel::detail($id);
if ($model->submit($this->postData('withdraw'))) {
return $this->renderSuccess('操作成功');
}
return $this->renderError($model->getError() ?: '操作失败');
}
/**
* 确认打款
* @param $id
* @return array
* @throws \think\exception\DbException
*/
public function money($id)
{
$model = WithdrawModel::detail($id);
if ($model->money()) {
return $this->renderSuccess('操作成功');
}
return $this->renderError($model->getError() ?: '操作失败');
}
/**
* 分销商提现:微信支付企业付款
* @param $id
* @return array|bool
* @throws \app\common\exception\BaseException
* @throws \think\Exception
* @throws \think\exception\DbException
*/
public function wechat_pay($id)
{
$model = WithdrawModel::detail($id);
if ($model->wechatPay()) {
return $this->renderSuccess('操作成功');
}
return $this->renderError($model->getError() ?: '操作失败');
}
}