审查视图

application/home/controller/Collect.php 911 字节
王晓刚 authored
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
<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2019/10/24
 * Time: 8:44
 */

namespace app\home\controller;


use app\common\controller\WechatBase;
use think\Db;

class Collect extends WechatBase
{
    protected $user_id;
    function _initialize()
    {
        parent::_initialize();
        //判断是否授权
        $user_id = get_current_user_id();
        if(empty($user_id)){
            $this->redirect('user/authorization_view');
        }
        $this->user_id = $user_id;
    }
王晓刚 authored
28
王晓刚 authored
29 30 31 32 33 34 35 36 37 38 39
    public function index(){
        $data = Db::name('collect')
            ->alias('c')
            ->field('g.*,c.id as c_id')
            ->join('fa_goods g','g.id = c.goods_id')
            ->where(['c.user_id'=>$this->user_id])->order('c.id desc')->page(1,5)->select();
        $this->assign('data',$data);
        $this->assign('title','我的收藏');
        return $this->fetch();
    }
}