...
|
...
|
@@ -261,16 +261,16 @@ class Config extends Api |
|
|
//Gift
|
|
|
$IsHave = Db::name('message')->where(['user_id' => $UserId, 'ob_id' => $Params['ob_id'], 'type' => 2])->find();
|
|
|
if ($Params['gift_id'] != 0) {
|
|
|
if (!empty($IsHave)) {
|
|
|
//update
|
|
|
if ($IsHave['gift_id'] != 0) {
|
|
|
// $this->error('只能送出一份礼物');
|
|
|
}
|
|
|
$data = [
|
|
|
'gift_id' => $Params['gift_id']
|
|
|
];
|
|
|
$Res = Db::name('message')->where(['user_id' => $UserId, 'ob_id' => $Params['ob_id'], 'type' => 2])->update($data);
|
|
|
} else {
|
|
|
// if (!empty($IsHave)) {
|
|
|
// //update
|
|
|
// if ($IsHave['gift_id'] != 0) {
|
|
|
//// $this->error('只能送出一份礼物');
|
|
|
// }
|
|
|
// $data = [
|
|
|
// 'gift_id' => $Params['gift_id']
|
|
|
// ];
|
|
|
// $Res = Db::name('message')->where(['user_id' => $UserId, 'ob_id' => $Params['ob_id'], 'type' => 2])->update($data);
|
|
|
// } else {
|
|
|
//add
|
|
|
$data = [
|
|
|
'user_id' => $UserId,
|
...
|
...
|
@@ -282,7 +282,7 @@ class Config extends Api |
|
|
'createtime' => time()
|
|
|
];
|
|
|
$Res = Db::name('message')->insert($data);
|
|
|
}
|
|
|
// }
|
|
|
} else {
|
|
|
//Message
|
|
|
// if (!empty($IsHave)) {
|
...
|
...
|
|