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.
91 lines
2.0 KiB
91 lines
2.0 KiB
3 years ago
|
<?php
|
||
|
/**
|
||
|
*
|
||
|
* Route.php
|
||
|
* User: ChenLong
|
||
|
* DateTime: 2020-04-12 23:07
|
||
|
*/
|
||
|
|
||
|
namespace app\admin\controller\system;
|
||
|
|
||
|
use app\common\ResponseJson;
|
||
|
use app\common\SdException;
|
||
|
|
||
|
/**
|
||
|
* Class Route
|
||
|
* @package app\admin\controller\system
|
||
|
* @author chenlong <vip_chenlong@163.com>
|
||
|
*/
|
||
|
class Route extends \app\common\controller\Admin
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* @return array|\Closure|mixed|string|\think\Collection|\think\response\Json
|
||
|
* @throws SdException
|
||
|
*/
|
||
|
public function listData()
|
||
|
{
|
||
|
return $this->setJoin([
|
||
|
['route', 'i.pid = route.id', 'left'],
|
||
|
])
|
||
|
->setField('i.id,i.title,i.route,i.pid,route.title parent,i.type,i.weigh,i.icon,i.create_time')
|
||
|
->listsRequest();
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @return array|mixed
|
||
|
*/
|
||
|
public function add()
|
||
|
{
|
||
|
return view(__FUNCTION__, [
|
||
|
'type_data' => \app\admin\model\system\Route::getType(),
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @param int $id
|
||
|
* @return array|\think\response\View
|
||
|
* @throws SdException
|
||
|
*/
|
||
|
public function edit($id = 0)
|
||
|
{
|
||
|
return view(__FUNCTION__, [
|
||
|
'type_data' => \app\admin\model\system\Route::getType(),
|
||
|
'data' => $this->getModel()::getDataById($id)->getData(),
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
public function beforeWrite(&$data)
|
||
|
{
|
||
|
if (!empty($data['route'])) {
|
||
|
$data['route'] = strtr($data['route'], ['\\' => '/']);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 获取节点
|
||
|
* @param \app\admin\model\system\Route $route
|
||
|
* @return \think\response\Json
|
||
|
* @throws \think\db\exception\DataNotFoundException
|
||
|
* @throws \think\db\exception\DbException
|
||
|
* @throws \think\db\exception\ModelNotFoundException
|
||
|
*/
|
||
|
public function getNode(\app\admin\model\system\Route $route)
|
||
|
{
|
||
|
return ResponseJson::mixin($route->getNode());
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param $id
|
||
|
* @return bool|string
|
||
|
* @throws \Throwable
|
||
|
*/
|
||
|
public function delete($id)
|
||
|
{
|
||
|
(new \app\admin\model\system\Route())->deleteRoute($id);
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|