22 lines
471 B
PHP
22 lines
471 B
PHP
<?php
|
|
|
|
namespace app\api\controller;
|
|
|
|
use think\Controller;
|
|
use think\Request;
|
|
|
|
class Version extends Controller
|
|
{
|
|
public function get_app_version()
|
|
{
|
|
$type = input('type', 0);
|
|
$reslut = model('Version')->get_app_version($type);
|
|
return ajaxReturn($reslut['code'], $reslut['msg'], $reslut['data']);
|
|
}
|
|
//IOS 上架审核
|
|
public function ios_shenhe()
|
|
{
|
|
return ajaxReturn(200, "审核状态", ['status' => 1]);
|
|
}
|
|
}
|