From 6e4957872fe5efad16af2e2c9c250f00e8a75107 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 23 Jul 2019 13:35:20 +0800 Subject: [PATCH] Update Fans.php --- application/service/controller/Fans.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/service/controller/Fans.php b/application/service/controller/Fans.php index 832d15863..ad223f907 100644 --- a/application/service/controller/Fans.php +++ b/application/service/controller/Fans.php @@ -56,7 +56,7 @@ class Fans extends Controller } if ($this->request->isGet()) { $this->where = ['status' => '1', 'service_type' => '2', 'is_deleted' => '0']; - $this->wechats = Db::name('WechatServiceConfig')->where($this->where)->column('authorizer_appid,nick_name'); + $this->wechats = Db::name('WechatServiceConfig')->where($this->where)->order('id desc')->column('authorizer_appid,nick_name'); } }