From b2ee31bf3ec675545bbc840adfd17b5ef3a4f85f Mon Sep 17 00:00:00 2001 From: Anyon Date: Wed, 18 Sep 2019 10:05:09 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=A2=9E=E5=8A=A0=E8=BD=AE?= =?UTF-8?q?=E6=92=AD=E5=9B=BE=E7=89=87=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/store/controller/Slider.php | 52 ++++++++ application/store/controller/api/Data.php | 38 ++++++ application/store/service/ExtendService.php | 3 +- application/store/view/slider/index.html | 135 ++++++++++++++++++++ 4 files changed, 226 insertions(+), 2 deletions(-) create mode 100644 application/store/controller/Slider.php create mode 100644 application/store/controller/api/Data.php create mode 100644 application/store/view/slider/index.html diff --git a/application/store/controller/Slider.php b/application/store/controller/Slider.php new file mode 100644 index 000000000..7f0c7998e --- /dev/null +++ b/application/store/controller/Slider.php @@ -0,0 +1,52 @@ +size = '600 * 350'; + $this->keys = 'slider_home'; + $this->title = '轮播图片管理'; + $this->desc = "建议上传图片尺寸 {$this->size}"; + $this->_apply('index'); + } + + /** + * 显示与管理 + * @param string $tpl 模板名称 + * @throws \think\Exception + * @throws \think\exception\PDOException + */ + private function _apply($tpl) + { + if ($this->request->isGet()) { + $this->list = sysdata($this->keys); + $this->fetch($tpl); + } else { + if (sysdata($this->keys, json_decode($this->request->post('data'), true))) { + $this->success('数据保存成功!', ''); + } else { + $this->error('数据保存失败,请稍候再试!'); + } + } + } + +} diff --git a/application/store/controller/api/Data.php b/application/store/controller/api/Data.php new file mode 100644 index 000000000..ccd01407d --- /dev/null +++ b/application/store/controller/api/Data.php @@ -0,0 +1,38 @@ +keys = input('keys', 'slider_home'); + $this->success('获取轮播图片数据!', sysdata($this->keys)); + } + +} \ No newline at end of file diff --git a/application/store/service/ExtendService.php b/application/store/service/ExtendService.php index 7cd073c43..6ff007b47 100644 --- a/application/store/service/ExtendService.php +++ b/application/store/service/ExtendService.php @@ -151,8 +151,7 @@ class ExtendService 'password' => md5(md5(sysconf('sms_zt_password2')) . $tkey), ]; $result = Http::post('http://intl.zthysms.com/intBalance.do', $data); - - if (!is_numeric($result) && ($state = intval($result)) && isset(self::$messageMap2[$state])) { + if (!is_numeric($result) && ($state = intval($result)) && isset(self::$globeMessageMap[$state])) { return ['code' => 0, 'num' => 0, 'msg' => self::$globeMessageMap[$state]]; } else { return ['code' => 1, 'num' => $result, 'msg' => '查询成功']; diff --git a/application/store/view/slider/index.html b/application/store/view/slider/index.html new file mode 100644 index 000000000..276425234 --- /dev/null +++ b/application/store/view/slider/index.html @@ -0,0 +1,135 @@ +{extend name="admin@main"} + +{block name="content"} +
+ +
+
+ 轮播图管理( 尺寸 {$size} ) +
+
+ {foreach $list as $key => $vo} +
+
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ + +
+
+ +
+
+
+ {/foreach} +
+
+

{$desc}

+ 添加图片 +
+
+
+
+ +
+
+ +
+ +
+
+
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+
+
+ + +
+
+ +
+
+
+
+ + + +{/block} + +{block name='style'} + +{/block}