From 5ee5f5984a17641f80f7b023fcb1254a511cc244 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Tue, 21 Feb 2017 11:14:04 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84=E9=85=8D=E7=BD=AE=E6=A8=A1?= =?UTF-8?q?=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/controller/Config.php | 27 +++++---- application/admin/view/config.mail.html | 61 +++++++++++++++++++ application/admin/view/config.sms.html | 79 +++++++++++++++++++++++++ 3 files changed, 155 insertions(+), 12 deletions(-) create mode 100644 application/admin/view/config.mail.html create mode 100644 application/admin/view/config.sms.html diff --git a/application/admin/controller/Config.php b/application/admin/controller/Config.php index 3e5b6421a..c5bd38c15 100644 --- a/application/admin/controller/Config.php +++ b/application/admin/controller/Config.php @@ -16,9 +16,10 @@ class Config extends BasicAdmin { protected $table = 'SystemConfig'; + protected $title = '系统参数配置'; + public function index() { if (!$this->request->isPost()) { - $this->title = '系统参数配置'; parent::_list($this->table); } else { $data = $this->request->post(); @@ -31,17 +32,19 @@ class Config extends BasicAdmin { } public function file() { - if (!$this->request->isPost()) { - $this->title = '文件存储配置'; - parent::_list($this->table); - } else { - $data = $this->request->post(); - foreach ($data as $key => $vo) { - $_data = ['name' => $key, 'value' => $vo]; - Data::save($this->table, $_data, 'name'); - } - $this->success('数据修改成功!', ''); - } + $this->title = '文件存储配置'; + $this->index(); + } + + + public function mail() { + $this->title = '邮箱账号配置'; + $this->index(); + } + + public function sms() { + $this->title = '短信账号配置'; + $this->index(); } } diff --git a/application/admin/view/config.mail.html b/application/admin/view/config.mail.html new file mode 100644 index 000000000..0792016cf --- /dev/null +++ b/application/admin/view/config.mail.html @@ -0,0 +1,61 @@ +{extend name="extra@admin/content"} + +{block name="content"} +
+
+
+
+ 邮件配置 +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+
+
+
+{/block} \ No newline at end of file diff --git a/application/admin/view/config.sms.html b/application/admin/view/config.sms.html new file mode 100644 index 000000000..6d8e193f4 --- /dev/null +++ b/application/admin/view/config.sms.html @@ -0,0 +1,79 @@ +{extend name="extra@admin/content"} + +{block name="content"} +
+
+
+
+ 短信平台 +
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+ +
+
+
+
+
+ +{/block} + +{block name="script"} + +{/block} \ No newline at end of file