|
@@ -193,6 +193,16 @@ class IssueService extends BaseService
|
|
|
|
|
|
$info->status = self::model()::STATUS_CLOSE;
|
|
|
$info->save();
|
|
|
+ $replyInfo = KeyboardService::findOne(['button' => '停止下注']);
|
|
|
+ if($replyInfo){
|
|
|
+ $text = $replyInfo->reply;
|
|
|
+ $buttons = json_decode($replyInfo->buttons,true);
|
|
|
+ $image = $replyInfo->image;
|
|
|
+ if($image){
|
|
|
+ $image = url($image);
|
|
|
+ }
|
|
|
+ self::bettingGroupNotice($text, $buttons, $image);
|
|
|
+ }
|
|
|
return ['code'=>self::YES, 'msg'=>'封盘成功'];
|
|
|
}
|
|
|
|