详情页

fastadmin 中的关联查询

时间:2023年07月02日

编辑:佚名

fastadmin 中的关联查询
后台控制器部分 application\admin\model\CommisionRecord.php
application\admin\model\GoodsOrder.php
复制代码 
namespace app\admin\controller;
use app\common\controller\Backend;
/**
 * 
 *
 * @icon fa fa-circle-o
 */
class GoodsOrder extends Backend
{
    /**
     * GoodsOrder模型对象
     * @var \app\admin\model\GoodsOrder
     */
    protected $model = null;
    public function _initialize()
    {
        parent::_initialize();
        $this->model = new \app\admin\model\GoodsOrder;
    }
    /**
     * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
     * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
     * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
     */
    public function index(){
        $this->request->filter(['strip_tags']);
        if ($this->request->isAjax()){
            //开启关联查询
            $this->relationSearch = true;
            list($where, $sort, $order, $offset, $limit) = $this->buildparams();
            $list = $this->model
                            ->with("commisionrecord")
                            ->where($where)
                            ->order($sort, $order)
                            ->paginate($limit);
            $result = array("total" => $list->total(), "rows" => $list->items());
            return json($result);
        }
        return $this->view->fetch();
    }
}
<?php
namespace app\admin\model;
use think\Model;
class CommisionRecord extends Model
{
    // 表名
    protected $name = 'commision_record';
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = false;
    // 定义时间戳字段名
    protected $createTime = false;
    // 追加属性
    protected $append = [
    ];
}
<?php
namespace app\admin\model;
use think\Model;
class GoodsOrder extends Model
{
    // 表名
    protected $name = 'goods_order';
    // 自动写入时间戳字段
    protected $autoWriteTimestamp = false;
    // 定义时间戳字段名
    protected $createTime = false;
    // 追加属性
    protected $append = [
        'create_time_text',
        'pay_time_text'
    ];
    // commision_record 是关联的模型名  order_num 是外键  order_num 是主键  LEFT 是join类型
    // setEagerlyType(0) 设置预载入方式  2个值  0  是 JOIN方式   1  是 IN 方式
    public function commisionrecord(){
        return $this->belongsTo('commision_record', 'order_num', 'order_num',[],'LEFT')->setEagerlyType(0);
    }
}
js 渲染数据 关联表的字段需要加关联的方法点关联表的字段
{field: 'commisionrecord.money', title: __('推广佣金'),operate:'LIKE'}
相关文章
猜你需要