diff --git a/app/data/controller/Config.php b/app/data/controller/Config.php new file mode 100644 index 000000000..027a815a3 --- /dev/null +++ b/app/data/controller/Config.php @@ -0,0 +1,36 @@ +request->isGet()) { + $this->title = '轮播图管理'; + $this->data = sysdata('slider'); + $this->fetch(); + } else { + if (sysdata('slider', json_decode(input('data'), true))) { + $this->success('轮播图保存成功!', ''); + } else { + $this->error('轮播图保存失败,请稍候再试!'); + } + } + } +} \ No newline at end of file diff --git a/app/data/view/article_content/select.html b/app/data/view/article_content/select.html index 97ae22a99..5ca500bcb 100644 --- a/app/data/view/article_content/select.html +++ b/app/data/view/article_content/select.html @@ -2,12 +2,12 @@ {block name='content'}
文章信息 | +文章标题 | 文章状态 | 创建时间 | @@ -36,7 +36,6 @@ {block name='script'} + +{/block} \ No newline at end of file |
---|