Files
yuyin-php/application/api/controller/Week.php

24 lines
374 B
PHP
Raw Normal View History

2025-08-08 14:45:40 +08:00
<?php
namespace app\api\controller;
use think\Controller;
class Week extends Controller
{
//房间流水
public function index(){
$user_id = input('uid','');
$type = input('type', 1);
$result = model('Week')->serial_index($user_id, $type);
$this->assign('result', $result['data']);
return $this->view->fetch();
}
}