Update Fans.php

This commit is contained in:
Anyon 2019-07-23 13:35:20 +08:00
parent cd86ab12e8
commit 6e4957872f

View File

@ -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');
}
}