| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <?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 \app\common\exception\BaseException
- * @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\DbException
- */
- public function wechat_pay($id)
- {
- $model = WithdrawModel::detail($id);
- if ($model->wechatPay()) {
- return $this->renderSuccess('操作成功');
- }
- return $this->renderError($model->getError() ?: '操作失败');
- }
- }
|