This commit is contained in:
2024-12-01 16:56:00 +08:00
parent 9f10f727ed
commit 19d38802a9
10 changed files with 206 additions and 4 deletions

View File

@ -38,7 +38,6 @@ class Category extends Controller
public function add()
{
$this->title = '添加栏目';
$this->_applyFormToken();
CmsCategory::mForm('form');
}
@ -53,7 +52,6 @@ class Category extends Controller
{
$this->title = '编辑栏目';
$this->id = $this->request->param('id', 0, 'intval'); //当前栏目ID
$this->_applyFormToken();
CmsCategory::mForm('form');
}