0 ? (int)$page : 1; $limit = $limit ? (int)$limit : 20; $start = $start ? (int)$start : 0; if(!is_array($where)){ $where = json_decode($where,true); } $limit_str = ($limit * ($page-1) + $start) .",".$limit; $total = $this->where($where)->count(); $list = Db::name('Cash')->where($where)->order($order)->limit($limit_str)->select(); $user_ids=[]; foreach($list as $k=>&$v){ if($v['user_id'] >0){ $user_ids[$v['user_id']] = $v['user_id']; } } if(!empty($user_ids)){ $where2=[]; $where['user_id'] = ['in', $user_ids]; $order='user_id desc'; $user_list = model('User')->listData($where2,$order,1,999); $user_list = mac_array_rekey($user_list['list'],'user_id'); foreach($list as $k=>&$v){ $list[$k]['user_name'] = $user_list[$v['user_id']]['user_name']; } } return ['code'=>1,'msg'=>lang('data_list'),'page'=>$page,'pagecount'=>ceil($total/$limit),'limit'=>$limit,'total'=>$total,'list'=>$list]; } public function infoData($where,$field='*') { if(empty($where) || !is_array($where)){ return ['code'=>1001,'msg'=>lang('param_err')]; } $info = $this->field($field)->where($where)->find(); if(empty($info)){ return ['code'=>1002,'msg'=>lang('obtain_err')]; } $info = $info->toArray(); return ['code'=>1,'msg'=>lang('obtain_ok'),'info'=>$info]; } public function saveData($param) { $data=[]; $data['cash_money'] = floatval($param['cash_money']); if($GLOBALS['config']['user']['cash_status'] !='1'){ return ['code'=>1005,'msg'=>lang('model/cash/not_open')]; } if($data['cash_money'] < $GLOBALS['config']['user']['cash_min']){ return ['code'=>1006,'msg'=>lang('model/cash/min_money_err').':'.$GLOBALS['config']['user']['cash_min'] ]; } $tx_points = intval($data['cash_money'] * $GLOBALS['config']['user']['cash_ratio']); if($tx_points > $GLOBALS['user']['user_points']){ return ['code'=>1007,'msg'=>lang('model/cash/mush_money_err')]; } $data['user_id'] = $GLOBALS['user']['user_id']; $data['cash_bank_name'] = htmlspecialchars(urldecode(trim($param['cash_bank_name']))); $data['cash_bank_no'] = htmlspecialchars(urldecode(trim($param['cash_bank_no']))); $data['cash_payee_name'] = htmlspecialchars(urldecode(trim($param['cash_payee_name']))); $data['cash_points'] = $tx_points; $data['cash_time'] = time(); $validate = \think\Loader::validate('Cash'); if(!$validate->check($data)){ return ['code'=>1001,'msg'=>lang('param_err').':'.$validate->getError() ]; } if($data['user_id']==0 ) { return ['code'=>1002,'msg'=>lang('param_err')]; } $res = $this->allowField(true)->insert($data); if(false === $res){ return ['code'=>1004,'msg'=>lang('save_err').':'.$this->getError() ]; } //更新用户表 $update=[]; $update['user_points'] = $GLOBALS['user']['user_points'] - $tx_points; $update['user_points_froze'] = $GLOBALS['user']['user_points_froze'] + $tx_points; $where=[]; $where['user_id'] = $GLOBALS['user']['user_id']; $res = model('user')->where($where)->update($update); if(false === $res){ return ['code'=>1005,'msg'=>'更新用户积分失败:'.$this->getError() ]; } return ['code'=>1,'msg'=>lang('save_ok')]; } public function delData($where) { $list = $this->where($where)->select(); foreach($list as $k=>$v){ $where=[]; $where['cash_id'] = $v['cash_id']; $res = $this->where($where)->delete(); if($res===false){ return ['code'=>1001,'msg'=>lang('del_err').':'.$this->getError() ]; } //如果未审核则恢复冻结积分 if($v['cash_status'] ==0){ $where=[]; $where['user_id'] = $v['user_id']; $user = model('User')->where($where)->find(); $update=[]; $update['user_points'] = $user['user_points'] + $v['cash_points']; $update['user_points_froze'] = $user['user_points_froze'] - $v['cash_points']; $res = model('user')->where($where)->update($update); if(false === $res){ return ['code'=>1005,'msg'=>'更新用户积分失败:'.$this->getError() ]; } } } return ['code'=>1,'msg'=>lang('del_ok')]; } public function fieldData($where,$col,$val) { if(!isset($col) || !isset($val)){ return ['code'=>1001,'msg'=>lang('param_err')]; } $data = []; $data[$col] = $val; $res = $this->allowField(true)->where($where)->update($data); if($res===false){ return ['code'=>1001,'msg'=>lang('set_err').':'.$this->getError() ]; } return ['code'=>1,'msg'=>lang('set_ok')]; } public function auditData($where) { $list = $this->where($where)->select(); foreach($list as $k=>$v){ $where2=[]; $where2['user_id'] = $v['user_id']; $update=[]; $update['cash_status'] = 1; $update['cash_time_audit'] = time(); $res = model('Cash')->where($where)->update($update); if($res===false){ return ['code'=>1001,'msg'=>lang('del_err').':'.$this->getError() ]; } $res = model('User')->where($where2)->setDec('user_points_froze', $v['cash_points']); if(false === $res){ return ['code'=>1005,'msg'=>'更新用户积分失败:'.$this->getError() ]; } //积分日志 $data = []; $data['user_id'] = $v['user_id']; $data['plog_type'] = 9; $data['plog_points'] = $v['cash_points']; $result = model('Plog')->saveData($data); } return ['code'=>1,'msg'=>'审核成功']; } }