|
@@ -236,7 +236,9 @@ class Index extends Api
|
|
|
$list = SiteModel::alias('a')
|
|
|
->leftJoin('system_towns b','a.towns_id=b.id')
|
|
|
->field('a.id,a.code,a.name,b.name as towns_name')
|
|
|
- ->with('kd')
|
|
|
+ ->with(['kd'=>function($query) use ($date){
|
|
|
+ $query->group('name')->field('id,site_id,name,value,date');
|
|
|
+ }])
|
|
|
->order('a.id asc')
|
|
|
->page($Nowpage,$limits)
|
|
|
->select();
|