26 lines
341 B
PHP
Executable File
26 lines
341 B
PHP
Executable File
<?php
|
|
namespace app\us\controller;
|
|
|
|
|
|
class TopsNas extends BaseController
|
|
{
|
|
public function _initialize()
|
|
{
|
|
parent::_initialize();
|
|
parent::nasNavigation();
|
|
}
|
|
|
|
// 帮助中心
|
|
public function helper()
|
|
{
|
|
|
|
}
|
|
|
|
// 下载
|
|
public function download()
|
|
{
|
|
return $this->fetch();
|
|
}
|
|
|
|
}
|