Jg.php 1017 字节
<?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()
    {
        $row = Db::name('appversion')
            ->where(['app_type' => 'jianguan'])
            ->order('id desc')
            ->find();
        if(!empty($row)){
            $row['apk_url'] = full_image($row['apk_url']);
        }

        $this->assign('row', $row);
        return $this->view->fetch('appv2');
    }

}