Jg.php
1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?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');
}
}