删除无用的注释和文件

This commit is contained in:
2021-03-02 01:08:44 +08:00
parent 8f5b66bb92
commit 89bab045dd
147 changed files with 214 additions and 9816 deletions
@@ -16,7 +16,6 @@ class CancelController extends WorkflowController
{
public $permission = ['dialog'];
// 列表
public function indexAction()
{
$header = Grid::header([
@@ -74,7 +73,6 @@ class CancelController extends WorkflowController
]);
}
// 新建
public function createAction($action = 'edit')
{
$id = (int) Request::get('id');
@@ -89,25 +87,21 @@ class CancelController extends WorkflowController
], $tpl);
}
// 编辑
public function editAction()
{
return $this->createAction();
}
// 审核
public function auditAction()
{
return $this->createAction('audit');
}
// 显示
public function showAction()
{
return $this->createAction('show');
}
// 打印
public function printAction()
{
$id = Request::get('id');
@@ -174,7 +168,6 @@ class CancelController extends WorkflowController
]);
}
// 删除
public function deleteAction()
{
if (Request::method() == 'POST') {