24 lines
374 B
PHP
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();
|
|
|
|
|
|
}
|
|
|
|
}
|