From 8d221b531bec29b4c03a68d7ed1dc0f11621e61f Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 30 Apr 2019 18:31:30 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E5=90=8C=E6=AD=A5framework?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/wechat/controller/api/Review.php | 37 ++++-- application/wechat/view/api/review/image.html | 10 +- application/wechat/view/api/review/music.html | 34 ++---- application/wechat/view/api/review/news.html | 109 ++--------------- application/wechat/view/api/review/text.html | 2 +- application/wechat/view/api/review/video.html | 35 +----- application/wechat/view/api/review/view.html | 38 +----- application/wechat/view/api/review/voice.html | 19 +-- application/wechat/view/keys/form.html | 37 +----- application/wechat/view/news/form.html | 115 +++--------------- application/wechat/view/news/index.html | 99 ++------------- application/wechat/view/news/push.html | 108 +++------------- application/wechat/view/news/select.html | 112 +++-------------- public/static/admin.js | 1 - 14 files changed, 124 insertions(+), 632 deletions(-) diff --git a/application/wechat/controller/api/Review.php b/application/wechat/controller/api/Review.php index c5ff0a579..e11fe5b2d 100644 --- a/application/wechat/controller/api/Review.php +++ b/application/wechat/controller/api/Review.php @@ -26,7 +26,7 @@ class Review extends Controller { /** - * 显示图文列表 + * 图文展示 * @param integer $id * @return mixed * @throws \think\db\exception\DataNotFoundException @@ -40,7 +40,7 @@ class Review extends Controller } /** - * 显示图文内容 + * 文章展示 * @param integer $id * @return mixed * @throws \think\Exception @@ -56,29 +56,52 @@ class Review extends Controller return $this->fetch('', ['info' => Db::name('WechatNewsArticle')->where($where)->find()]); } + /** + * 文本展示 + */ public function text() { - return $this->fetch(); + $this->content = strip_tags(input('content', ''), ''); + $this->fetch(); } + /** + * 图片展示 + */ public function image() { - return $this->fetch(); + $this->content = strip_tags(input('content', ''), ''); + $this->fetch(); } + /** + * 视频展示 + */ public function video() { - return $this->fetch(); + $this->url = strip_tags(input('url', ''), ''); + $this->title = strip_tags(input('title', ''), ''); + $this->fetch(); } + /** + * 语音展示 + */ public function voice() { - return $this->fetch(); + $this->url = strip_tags(input('url', ''), ''); + $this->fetch(); } + /** + * 音乐展示 + */ public function music() { - return $this->fetch(); + $this->url = strip_tags(input('url', ''), ''); + $this->desc = strip_tags(input('desc', ''), ''); + $this->title = strip_tags(input('title', ''), ''); + $this->fetch(); } } \ No newline at end of file diff --git a/application/wechat/view/api/review/image.html b/application/wechat/view/api/review/image.html index d169b5932..5ab4feda8 100644 --- a/application/wechat/view/api/review/image.html +++ b/application/wechat/view/api/review/image.html @@ -5,19 +5,13 @@
- +
{/block} {block name='style'} {/block} \ No newline at end of file diff --git a/application/wechat/view/api/review/music.html b/application/wechat/view/api/review/music.html index 562937583..527a3ab49 100644 --- a/application/wechat/view/api/review/music.html +++ b/application/wechat/view/api/review/music.html @@ -5,12 +5,12 @@
-
{:input('title')}
-
{:input('desc')}
+
{$title|default=''}
+
{$desc|default=''}
\ No newline at end of file diff --git a/application/wechat/view/news/select.html b/application/wechat/view/news/select.html index d99fddc77..bc50b481d 100644 --- a/application/wechat/view/news/select.html +++ b/application/wechat/view/news/select.html @@ -2,100 +2,19 @@ {block name='style'} {/block} @@ -119,13 +38,12 @@ {/foreach}
{/foreach} - {if empty($list)}

没 有 记 录 哦!

{/if} + {if empty($list)}

没有记录哦!

{/if}
-
+
{if isset($pagehtml)}{$pagehtml|raw}{/if}
{/block} - {block name="script"}