截流自动化的商城平台
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.

WithdrawValidate.php 2.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php
  2. namespace app\api\validate;
  3. use app\common\basics\Validate;
  4. use app\common\server\ConfigServer;
  5. use app\common\model\user\User;
  6. /**
  7. * Class WithdrawValidate
  8. * @package app\api\validate
  9. */
  10. class WithdrawValidate extends Validate
  11. {
  12. protected $rule = [
  13. 'id' => 'require', //参数缺失
  14. 'type' => 'require|in:1,2,3,4,5',//提现类型
  15. 'money' => 'require|checkMoney',//提现佣金
  16. 'account' => 'requireIf:type,3|requireIf:type,4|requireIf:type,5',//账户类型
  17. 'real_name' => 'requireIf:type,3|requireIf:type,4|requireIf:type,5|chs',//真实姓名
  18. 'money_qr_code' => 'requireIf:type,3|requireIf:type,4',//收款码
  19. 'bank' => 'requireIf:type,5', // 提现银行
  20. 'subbank' => 'requireIf:type,5', // 银行支行
  21. ];
  22. protected $message = [
  23. 'id.require' => '参数缺失',
  24. 'type.require' => '参数错误',
  25. 'type.in' => '提现类型错误',
  26. 'money.require' => '参数错误',
  27. 'account.requireIf' => '请填写账号',
  28. 'real_name.requireIf' => '请填写真实姓名',
  29. 'real_name.chs' => '请填写真实姓名',
  30. 'money_qr_code.requireIf' => '请上传收款码',
  31. 'bank.requireIf' => '请填写提现银行',
  32. 'subbank.requireIf' => '请填写银行支行',
  33. ];
  34. /**
  35. * @notes 申请提现
  36. * @return WithdrawValidate
  37. * @author suny
  38. * @date 2021/7/13 6:30 下午
  39. */
  40. public function sceneApply()
  41. {
  42. return $this->only(['type', 'money', 'account', 'real_name', 'money_qr_code', 'bank', 'subbank']);
  43. }
  44. /**
  45. * @notes 申请详情
  46. * @return WithdrawValidate
  47. * @author suny
  48. * @date 2021/7/13 6:30 下午
  49. */
  50. public function sceneInfo()
  51. {
  52. return $this->only(['id']);
  53. }
  54. /**
  55. * @notes 提现佣金验证
  56. * @param $value
  57. * @param $rule
  58. * @param array $data
  59. * @return bool|string
  60. * @author suny
  61. * @date 2021/7/13 6:30 下午
  62. */
  63. protected function checkMoney($value, $rule, $data = [])
  64. {
  65. $able_withdraw = User::where('id', $data['user_id'])->value('earnings');
  66. if ($value > $able_withdraw) {
  67. return '可提现金额不足';
  68. }
  69. //1.最低提现金额
  70. $min_withdraw = ConfigServer::get('withdraw', 'min_withdraw', 0);
  71. if ($value < $min_withdraw) {
  72. return '最低提现' . $min_withdraw . '元';
  73. }
  74. //2,最高提现金额
  75. $max_withdraw = ConfigServer::get('withdraw', 'max_withdraw', 0);
  76. if ($value > $max_withdraw) {
  77. return '最高提现' . $max_withdraw . '元';
  78. }
  79. return true;
  80. }
  81. }