|
@@ -3,6 +3,7 @@
|
|
|
namespace app\api\controller;
|
|
|
|
|
|
use app\api\model\Address;
|
|
|
+use app\api\model\Cashwechat;
|
|
|
use app\api\model\Foot;
|
|
|
use app\api\model\Realname;
|
|
|
use app\api\model\Record;
|
|
@@ -31,7 +32,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 用户显示
|
|
|
- *
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
*/
|
|
|
public function userInfo()
|
|
@@ -52,7 +53,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 修改昵称
|
|
|
- *
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
* @param string $user_nickname 用户昵称
|
|
|
*/
|
|
@@ -79,7 +80,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 修改密码
|
|
|
- *
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
* @param string $user_pwd 用户密码
|
|
|
* @param string $user_qrpwd 重复 密码
|
|
@@ -122,7 +123,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 修改支付密码
|
|
|
- *
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
* @param string $user_tel 手机号
|
|
|
* @param string $code 验证码
|
|
@@ -186,6 +187,7 @@ class User extends Api
|
|
|
/**
|
|
|
* 实名认证
|
|
|
*
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
* @param string $user_nickname 姓名
|
|
|
* @param string $idcard 身份证号
|
|
@@ -219,6 +221,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 常见问题
|
|
|
+ * @ApiMethod (POST)
|
|
|
*/
|
|
|
public function question()
|
|
|
{
|
|
@@ -232,7 +235,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 我的团队
|
|
|
- *
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
*/
|
|
|
public function team()
|
|
@@ -258,7 +261,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 我的地址
|
|
|
- *
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
*/
|
|
|
public function address()
|
|
@@ -277,7 +280,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 地址添加
|
|
|
- *
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
* @param string $a_name 姓名
|
|
|
* @param string $a_tel 手机号
|
|
@@ -328,6 +331,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 地址修改
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $a_id 地址id
|
|
|
* @param string $a_name 姓名
|
|
|
* @param string $a_tel 手机号
|
|
@@ -356,6 +360,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 地址删除
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $a_id 地址id
|
|
|
*/
|
|
|
public function addressDel()
|
|
@@ -376,7 +381,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 我的客服
|
|
|
- *
|
|
|
+ * @ApiMethod (POST)
|
|
|
*/
|
|
|
public function coursetomer()
|
|
|
{
|
|
@@ -390,6 +395,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 我的红豆
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
*/
|
|
|
public function redbean()
|
|
@@ -408,6 +414,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 我的红豆
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
* @param string $user_redbean 兑换个数
|
|
|
*/
|
|
@@ -468,6 +475,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 我的红豆兑换记录
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
*/
|
|
|
public function redbeanRecord()
|
|
@@ -486,6 +494,7 @@ class User extends Api
|
|
|
|
|
|
/**
|
|
|
* 我的足迹显示
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $user_id 用户id
|
|
|
*/
|
|
|
public function footIndex()
|
|
@@ -503,20 +512,123 @@ class User extends Api
|
|
|
return $this->result('暂无数据', '', 100);
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
/**
|
|
|
* 我的足迹删除
|
|
|
+ * @ApiMethod (POST)
|
|
|
* @param string $f_id 足迹id
|
|
|
*/
|
|
|
- public function footDel () {
|
|
|
+ public function footDel()
|
|
|
+ {
|
|
|
$params = $this->request->post();
|
|
|
if (!isset($params['f_id'])) {
|
|
|
return $this->result('网络错误', [], 100);
|
|
|
}
|
|
|
- $footDel = Foot::where('f_id',$params['f_id'])->delete();
|
|
|
+ $footDel = Foot::where('f_id', $params['f_id'])->delete();
|
|
|
if ($footDel) {
|
|
|
- return $this->result('删除成功',[],200);
|
|
|
+ return $this->result('删除成功', [], 200);
|
|
|
+ } else {
|
|
|
+ return $this->result('删除失败', [], 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 会员提现价格显示
|
|
|
+ * @ApiMethod (POST)
|
|
|
+ */
|
|
|
+ public function cashMoney()
|
|
|
+ {
|
|
|
+ $data = Db::name('cash_money')->select();
|
|
|
+ return $this->result('', $data, 200);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 会员提现到第几次
|
|
|
+ * @ApiMethod (POST)
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ */
|
|
|
+ public function cashIndex()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ if (!isset($params['user_id'])) {
|
|
|
+ return $this->result('网络错误', [], 100);
|
|
|
+ }
|
|
|
+ $data = UsersModel::Where('user_id', $params['user_id'])->field('user_id,cash_level')->find();
|
|
|
+ if ($data) {
|
|
|
+ return $this->result('', $data, 200);
|
|
|
} else {
|
|
|
- return $this->result('删除失败',[],100);
|
|
|
+ return $this->result('网络错误', '', 100);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 会员提现
|
|
|
+ * @ApiMethod (POST)
|
|
|
+ * @param string $user_id 用户id
|
|
|
+ * @param string $money 金额
|
|
|
+ */
|
|
|
+ public function cash()
|
|
|
+ {
|
|
|
+ $params = $this->request->post();
|
|
|
+ $rules = [
|
|
|
+ 'user_id' => 'require|number',
|
|
|
+ 'money' => 'require|number',
|
|
|
+ ];
|
|
|
+ $msg = [
|
|
|
+ 'user_id.require' => '网络错误',
|
|
|
+ 'money.require' => '请选择提现金额',
|
|
|
+ 'user_id.number' => '网络错误',
|
|
|
+ 'money.number' => '网络错误',
|
|
|
+ ];
|
|
|
+ $validata = $this->validate($params,$rules,$msg);
|
|
|
+ if (is_string($validata)) {
|
|
|
+ return $this->result($validata,[],100);
|
|
|
+ }
|
|
|
+ if(!preg_match("/^[1-9][0-9]*$/" ,$params['money'])){
|
|
|
+ return $this->result('请输入正整数',[],100);
|
|
|
+ }
|
|
|
+// //检测提现金额表中是否有这个金额
|
|
|
+ $is_money = Db::name('cash_money')->where('money',$params['money'])->find();
|
|
|
+// if (!$is_money) {
|
|
|
+// return $this->result('该金额暂不支持提现',[],100);
|
|
|
+// }
|
|
|
+// //判断是否该提现这个次数了
|
|
|
+ $user_cash_level = UsersModel::where('user_id',$params['user_id'])->find();
|
|
|
+// if ($user_cash_level) {
|
|
|
+// if ($user_cash_level['cash_level'] + 1 != 9) { //最后一个不算
|
|
|
+// if($is_money['c_id'] != $user_cash_level['cash_level'] + 1) {
|
|
|
+// return $this->result('请按照顺序提现',[],100);
|
|
|
+// }
|
|
|
+// }
|
|
|
+// }
|
|
|
+ if ($user_cash_level['user_money'] < $params['money']) {
|
|
|
+ return $this->result('余额不足',[],100);
|
|
|
+ }
|
|
|
+ if ($user_cash_level['type'] != 1) {
|
|
|
+ return $this->result('请先微信授权在提现',[],100);
|
|
|
+ }
|
|
|
+ Db::startTrans();
|
|
|
+ try{
|
|
|
+ $updMoney = UsersModel::where('user_id',$params['user_id'])->setDec('user_money',$params['money']);
|
|
|
+ Db::commit();
|
|
|
+ } catch (\Exception $e) {
|
|
|
+ Db::rollback();
|
|
|
+ return $this->result('网络错误,提现失败',[],100);
|
|
|
+ }
|
|
|
+ if ($updMoney) {
|
|
|
+ $number = rand(100,999).time();
|
|
|
+ $data = [
|
|
|
+ 'user_id' => $params['user_id'],
|
|
|
+ 'money' => $params['money'],
|
|
|
+ 'state' => 1,
|
|
|
+ 'create_time' => date('Y-m-d H:i:s',time()),
|
|
|
+ 'number' => $number,
|
|
|
+ ];
|
|
|
+ $add_log = Db::name('cash_log')->insert($data);
|
|
|
+ $cashWeChat = new Cashwechat();
|
|
|
+ $res = $cashWeChat->sendMoney(1,"oRrdQt-L9A0WfDGT-nwHC24Er0tI",'余额提现',$user_cash_level['user_nickname'],$number);
|
|
|
+
|
|
|
+ return $res;
|
|
|
}
|
|
|
}
|
|
|
}
|