mid = $this->request->post('mid'); $this->openid = $this->request->post('openid'); if (empty($this->mid)) $this->error('无效的会员ID参数!'); if (empty($this->openid)) $this->error('无效的会员绑定OPENID!'); $this->getMember(); } /** * 获取会员信息 * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\ModelNotFoundException * @throws \think\exception\DbException */ protected function getMember() { $where = ['id' => $this->mid, 'openid' => $this->openid]; $this->member = Db::name('StoreMember')->where($where)->find(); if (empty($this->member)) $this->error('无效的会员信息,请重新登录授权!'); $this->member['nickname'] = emoji_decode($this->member['nickname']); // 游客会员每月没有领取机会 $this->member['times_count'] = 0; // 临时会员及VIP1每月只有1次领取机会 if (in_array(intval($this->member['vip_level']), [1, 2])) { $this->member['times_count'] = 1; } // VIP2会员每月只有2次免费领取机会 if (intval($this->member['vip_level']) === 3) { $this->member['times_count'] = 2; } // 会员当前已经领取次数 $where = [['mid', 'eq', $this->mid], ['status', 'in', ['2', '3', '4', '5']]]; $this->member['times_used'] = Db::name('StoreOrder')->where($where)->count(); return $this->member; } }