You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
730 B
44 lines
730 B
3 years ago
|
<?php
|
||
|
/**
|
||
|
* Date: 2020/11/25 14:44
|
||
|
* User: chenlong <vip_chenlong@163.com>
|
||
|
*/
|
||
|
|
||
|
namespace app\admin\page\system;
|
||
|
|
||
|
|
||
|
use app\common\BasePage;
|
||
|
use sdModule\layui\TablePage;
|
||
|
|
||
|
class Route extends BasePage
|
||
|
{
|
||
|
public string $list_template = 'lists';
|
||
|
|
||
|
/**
|
||
|
* 获取创建列表table的数据
|
||
|
* @return TablePage
|
||
|
*/
|
||
|
public function getTablePageData(): TablePage
|
||
|
{
|
||
|
return TablePage::create([]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 生成表单的数据
|
||
|
* @return array
|
||
|
*/
|
||
|
public function formData(): array
|
||
|
{
|
||
|
return [];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 列表页面的名字
|
||
|
* @return string
|
||
|
*/
|
||
|
public function listPageName(): string
|
||
|
{
|
||
|
return $this->lang("route_m");
|
||
|
}
|
||
|
}
|