beSuperVip($uid); return array( 'code' => 200, 'message' => 'success' ); } /** * 创建卡片领取超级会员 * @return array * @throws \App\Exceptions\AlertException */ public function sendSuperVipByStorePartner() { $uid = Auth::auth(); $vs = new VipService(); $vs->sendSuperVipByStorePartner($uid); return array( 'code' => 200, 'message' => 'success' ); } }