UserFavoriteModel.php
1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Powerless < wzxaini9@gmail.com>
// +----------------------------------------------------------------------
namespace app\user\model;
use think\Db;
use think\Model;
class UserFavoriteModel extends Model
{
public function favorites()
{
$userId = cmf_get_current_user_id();
$userQuery = Db::name("UserFavorite");
$favorites = $userQuery->where('user_id', $userId)->order('id desc')->paginate(10);
$data['page'] = $favorites->render();
$data['lists'] = $favorites->items();
return $data;
}
public function deleteFavorite($id)
{
$userId = cmf_get_current_user_id();
$userQuery = Db::name("UserFavorite");
$where['id'] = $id;
$where['user_id'] = $userId;
$data = $userQuery->where($where)->delete();
return $data;
}
/**
* 收藏分页
* @param $data
* @return \think\Paginator
* @throws \think\exception\DbException
*/
public function favoritePage($data)
{
$where = [];
if (!empty($data['user_id'])) {
$where['user_id'] = $data['user_id'];
}
$result = $this->where($where)->order('id desc')->paginate();
return $result;
}
}