用户详情 加家族成员-解约

This commit is contained in:
2025-12-25 16:49:55 +08:00
parent 5a72687aee
commit 36f4187ada
4 changed files with 37 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
<?php
namespace app\api\model;
use think\Cache;
use think\Model;
use think\Db;
use think\Session;
@@ -424,6 +425,10 @@ class Decorate extends Model
model('Chat')->sendMsg(1035,$room_id,$text,$uid);
}
}
//更新装备缓存
$cache_key = 'user_base_info_'.$uid;
Cache::rm($cache_key);
return ['code' => 1, 'msg' => "设置成功", 'data' => null];
} catch (\Exception $e) {
// 回滚事务
@@ -446,6 +451,9 @@ class Decorate extends Model
if (!$reslut) {
return ['code' => 0, 'msg' => "取消装扮失败", 'data' => null];
}
//更新装备缓存
$cache_key = 'user_base_info_'.$uid;
Cache::rm($cache_key);
return ['code' => 1, 'msg' => "取消成功", 'data' => null];
}