lrf402788946 4 years ago
parent
commit
30267a4ccf
1 changed files with 3 additions and 1 deletions
  1. 3 1
      app/service/statistics/index.js

+ 3 - 1
app/service/statistics/index.js

@@ -233,7 +233,9 @@ class IndexService extends CrudService {
     // 同时在线人数(伪)
     const tszx = await this.redis.get('login_number');
     // 特邀嘉宾
-    const tyjb = await this.personalModel.count({ is_expert: true });
+    // const tyjb = await this.personalModel.count({ is_expert: true });
+    const tyjb = 81;
+    console.log(tyjb);
     // 洽谈合作 达成意向 交易完成
     const trans = await this.tranModel.aggregate([
       { $match: { status: { $in: [ '0', '1', '3' ] } } },