Shuguan.php 5.0 KB
<?php

namespace app\admin\controller;

use app\admin\model\ShuguanLog;
use app\common\controller\Backend;

/**
 * 数管提交信息管理
 *
 * @icon fa fa-circle-o
 */
class Shuguan extends Backend
{
    
    /**
     * Shuguan模型对象
     * @var \app\admin\model\Shuguan
     */
    protected $model = null;
    protected $shuguan_log_model = null;
    protected $dataLimit = 'personal'; //默认基类中为false,表示不启用,可额外使用auth和personal两个值
    protected $dataLimitField = 'customer_id'; //数据关联字段,当前控制器对应的模型表中必须存在该字段

    public function _initialize()
    {
        parent::_initialize();
        $this->model = new \app\admin\model\Shuguan;
        $this->shuguan_log_model = new ShuguanLog();
    }
    
    /**
     * 默认生成的控制器所继承的父类中有index/add/edit/del/multi五个基础方法、destroy/restore/recyclebin三个回收站方法
     * 因此在当前控制器中可不用编写增删改查的代码,除非需要自己控制这部分逻辑
     * 需要将application/admin/library/traits/Backend.php中对应的方法复制到当前控制器,然后进行修改
     */
    

    /**
     * 查看
     */
    public function index()
    {
        //当前是否为关联查询
        $this->relationSearch = true;
        //设置过滤方法
        $this->request->filter(['strip_tags']);
        if ($this->request->isAjax())
        {
            //如果发送的来源是Selectpage,则转发到Selectpage
            if ($this->request->request('keyField'))
            {
                return $this->selectpage();
            }
            list($where, $sort, $order, $offset, $limit) = $this->buildparams('api.name,admin.kehu_name');
            $total = $this->model
                ->with(['api','admin'])
                ->where($where)
                ->order($sort, $order)
                ->count();

            $list = $this->model
                ->with(['api','admin'])
                ->where($where)
                ->order($sort, $order)
                ->limit($offset, $limit)
                ->select();

            $list = collection($list)->toArray();
            foreach ($list as $k=>$v) {
                $list[$k]['files'] = cdnurl($v['files']);
            }
            $result = array("total" => $total, "rows" => $list);

            return json($result);
        }
        return $this->view->fetch();
    }


    /**
     * 明细
     */
    public function detail($ids = null)
    {
        $row = $this->model->get($ids,['admin']);
        if (!$row) {
            $this->error(__('No Results were found'));
        }
        $adminIds = $this->getDataLimitAdminIds();
        if (is_array($adminIds)) {
            if (!in_array($row[$this->dataLimitField], $adminIds)) {
                $this->error(__('You have no permission'));
            }
        }
        // 获取数管识别图片
        $shuguan_log_model = new ShuguanLog();
        $shuguan_log = $shuguan_log_model->where('shuguan_id',$row->id)->select();
        $this->assignconfig('ids',$ids);
        $this->view->assign('row',$row);
        $this->view->assign('shuguan_log',$shuguan_log);
        return $this->view->fetch();
    }


    /**
     * 结果列表
     */
    public function results($ids = null)
    {
        $row = $this->model->get($ids);
        if (!$row) {
            $this->error(__('No Results were found'));
        }
        $adminIds = $this->getDataLimitAdminIds();
        if (is_array($adminIds)) {
            if (!in_array($row[$this->dataLimitField], $adminIds)) {
                $this->error(__('You have no permission'));
            }
        }
        //当前是否为关联查询
        $this->relationSearch = false;
        //设置过滤方法
        $this->request->filter(['strip_tags']);
        if ($this->request->isAjax())
        {
            //如果发送的来源是Selectpage,则转发到Selectpage
            if ($this->request->request('keyField'))
            {
                return $this->selectpage();
            }
            $map = [
                'shuguan_id'    => $row->id
            ];
            $this->model = $this->shuguan_log_model;
            list($where, $sort, $order, $offset, $limit) = $this->buildparams();
            $total = $this->shuguan_log_model
                ->where($where)
                ->where($map)
                ->order($sort, $order)
                ->count();

            $list = $this->shuguan_log_model
                ->where($where)
                ->where($map)
                ->order($sort, $order)
                ->limit($offset, $limit)
                ->select();
            $list = collection($list)->toArray();
            foreach ($list as $k=>$v) {
                $list[$k]['image'] = cdnurl($row->files);
            }
            $result = array("total" => $total, "rows" => $list);

            return json($result);
        }
        $this->assignconfig('ids',$ids);
        $this->view->assign('row',$row);
        return $this->view->fetch();
    }
}