Files
yusheng-php/application/api/controller/UserCp.php

36 lines
911 B
PHP
Raw Normal View History

2025-11-14 14:49:38 +08:00
<?php
namespace app\api\controller;
use app\common\controller\BaseCom;
use think\Db;
class UserCp extends BaseCom
{
2025-11-19 11:07:59 +08:00
//用户CP礼物回赠
public function cpGiveGift()
{
$user_id = input('user_id', 0);
$gift_id = input('gift_id', 0);
2025-11-19 14:05:24 +08:00
$room_id = input('room_id', 0);
if($room_id){
$from_type = 2;
}else{
$from_type = 1;
}
$reslut = model('GiveGift')->give_gift($this->uid, $user_id, $gift_id, 1,$from_type,1,$room_id);
2025-11-19 11:07:59 +08:00
return V($reslut['code'], $reslut['msg'], $reslut['data']);
}
2025-11-14 14:49:38 +08:00
2025-11-14 15:26:04 +08:00
//Cp 空间
public function cpZone()
2025-11-14 14:49:38 +08:00
{
2025-11-22 11:12:27 +08:00
$page = input('page', 1);
$page_limit = input('page_limit', 15);
2025-11-21 17:23:50 +08:00
$user_id = input('user_id', 0);
2025-11-22 11:12:27 +08:00
$reslut = model('UserCp')->cpZone($user_id, $page, $page_limit);
2025-11-14 15:26:04 +08:00
return V($reslut['code'], $reslut['msg'], $reslut['data']);
2025-11-14 14:49:38 +08:00
}
}