|
...
|
...
|
@@ -10,6 +10,7 @@ |
|
|
|
namespace App\Http\Logic\Bside\Geo;
|
|
|
|
|
|
|
|
use App\Http\Logic\Bside\BaseLogic;
|
|
|
|
use App\Models\Geo\GeoCount;
|
|
|
|
use App\Models\Geo\GeoPlatform;
|
|
|
|
use App\Models\Geo\GeoQuestion;
|
|
|
|
use App\Models\Geo\GeoQuestionLog;
|
|
...
|
...
|
@@ -200,4 +201,18 @@ class GeoQuestionResLogic extends BaseLogic |
|
|
|
}
|
|
|
|
return $this->success($data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :获取图标数据
|
|
|
|
* @name :getPlatformCount
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2025/10/14 10:45
|
|
|
|
*/
|
|
|
|
public function getPlatformCount()
|
|
|
|
{
|
|
|
|
$geoCountModel = new GeoCount();
|
|
|
|
$lists = $geoCountModel->list(['project_id'=>$this->user['project_id']],'date',['*'],'desc',30);
|
|
|
|
return $this->success($lists);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|