|
...
|
...
|
@@ -105,6 +105,10 @@ class MailListV2Es2 extends Base { |
|
|
|
$where['seen'] = $seen;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// 回复
|
|
|
|
if (paramHas('answered')) {
|
|
|
|
$query['query']['bool']['must'][] = ['term' => ['answered' => app()->request('answered', 0, 'bool_Val') ? 1 : 0]];
|
|
|
|
}
|
|
|
|
// 搜索标题
|
|
|
|
$keyword = app()->request('keyword');
|
|
|
|
if($keyword){
|
...
|
...
|
|