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']); // 会员当前已经领取次数 $where = [['mid', 'eq', $this->mid], ['status', 'in', ['2', '3', '4', '5']]]; $this->member['times_used'] = Db::name('StoreOrder')->where($where)->count(); return $this->member; } }