Files
mier-php/application/api/controller/Version.php
2025-08-11 10:22:05 +08:00

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]);
}
}