代码初始化
This commit is contained in:
16
application/api/controller/Share.php
Normal file
16
application/api/controller/Share.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace app\api\controller;
|
||||
|
||||
use think\Controller;
|
||||
|
||||
class Share extends Controller
|
||||
{
|
||||
//动态详情
|
||||
public function zone_detail()
|
||||
{
|
||||
$zid = input('id', 0);
|
||||
$reslut = model('UserZone')->get_zone_info($zid);
|
||||
return V($reslut['code'], $reslut['msg'], $reslut['data']);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user