Update Fans.php

This commit is contained in:
Anyon 2019-07-23 13:34:54 +08:00
parent 9922aa1a39
commit cd86ab12e8

View File

@ -55,7 +55,8 @@ class Fans extends Controller
session('current_appid', $this->appid);
}
if ($this->request->isGet()) {
$this->wechats = Db::name('WechatServiceConfig')->where(['status' => '1'])->column('authorizer_appid,nick_name');
$this->where = ['status' => '1', 'service_type' => '2', 'is_deleted' => '0'];
$this->wechats = Db::name('WechatServiceConfig')->where($this->where)->column('authorizer_appid,nick_name');
}
}