Jg.php
611 字节
<?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 index()
{
$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();
}
}