From 1245523a8307f0764adbc8e329440b199b4e01f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=AF=E7=AB=8B?= Date: Wed, 7 Apr 2021 13:27:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E7=B2=89=E4=B8=9D=E6=95=B0?= =?UTF-8?q?=E6=8D=AE=E6=B8=85=E7=A9=BA=E6=93=8D=E4=BD=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/wechat/controller/Fans.php | 17 +++++++++++++++++ app/wechat/view/fans/index.html | 6 +++++- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/app/wechat/controller/Fans.php b/app/wechat/controller/Fans.php index 985891164..f5c5af2ab 100644 --- a/app/wechat/controller/Fans.php +++ b/app/wechat/controller/Fans.php @@ -74,6 +74,23 @@ class Fans extends Controller $this->_queue('同步微信用户数据', "xadmin:fansall"); } + /** + * 清空用户数据 + * @auth true + */ + public function truncate() + { + try { + $this->_query('WechatFans')->empty(); + $this->_query('WechatFansTags')->empty(); + $this->success('清空用户数据成功!'); + } catch (\think\exception\HttpResponseException $exception) { + throw $exception; + } catch (\Exception $exception) { + $this->error("清空用户数据失败,{$exception->getMessage()}"); + } + } + /** * 删除用户信息 * @auth true diff --git a/app/wechat/view/fans/index.html b/app/wechat/view/fans/index.html index ab3f72345..27a4c81d3 100644 --- a/app/wechat/view/fans/index.html +++ b/app/wechat/view/fans/index.html @@ -9,8 +9,12 @@ + + + + - + {/block}