Files
2025-08-11 10:22:05 +08:00

24 lines
374 B
PHP

<?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();
}
}