[更新]修改粉丝标签模块

This commit is contained in:
Anyon 2017-05-03 17:32:35 +08:00
parent 8637a53090
commit b7982c5db0
3 changed files with 10 additions and 2 deletions

View File

@ -28,6 +28,7 @@ Think.Admin
```
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

View File

@ -101,8 +101,6 @@ class Menu extends BasicAdmin {
}
$this->assign('nodes', array_column($nodes, 'node'));
$this->assign('menus', $menus);
} else {
$this->error('请不要改菜单构造!');
}
}

View File

@ -58,6 +58,15 @@ class Tags extends BasicAdmin {
if ($this->request->isGet()) {
return parent::_form($this->table, 'form', 'id');
}
$name = $this->request->post('name', '');
empty($name) && $this->error('粉丝标签名不能为空!');
if (Db::name($this->table)->where('name', $name)->count() > 0) {
$this->error('粉丝标签标签名已经存在,请使用其它标签名!');
}
$result = DataService::save($this->table, ['name' => $name, 'count' => 0]);
empty($result) && $this->error('粉丝标签添加失败,请稍候再试!');
$info = Db::name($this->table)->where('name', $name)->find();
empty($info) && $this->error('粉丝标签添加失败,请稍候再试!');
}
/**