<?php

namespace app\app\controller;

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

/**
 * 监管APP下载页
 * Class Jg
 */
class Jg extends Frontend
{

    protected $noNeedLogin = '*';
    protected $noNeedRight = '*';
    protected $layout = '';

    /**
     * 监管APP下载
     */
    public function index1()
    {
        $where = [
            "app_type" => "jianguan",
            "status" => "1"
        ];
        $version = Db::name("appversion")->where($where)->order("version desc")->find();
        $this->view->assign("version", $version);
        return $this->view->fetch();
    }

    /**
     * 监管APP下载new
     *
     */
    public function index()
    {
        $where = [
            "app_type" => "jianguan",
            "status" => "1"
        ];
        $version = Db::name("appversion")
            ->where($where)
            ->order("version desc")
            ->find();

        if (!empty($version['images'])) {
            $imgarr = explode(',', $version['images']);
            $version['images'] = full_image($imgarr);
        }
        $this->view->assign("version", $version);

        return $this->view->fetch('indexMobile');
    }

}