正在显示
1 个修改的文件
包含
4 行增加
和
0 行删除
| @@ -105,6 +105,10 @@ class MailListV2Es2 extends Base { | @@ -105,6 +105,10 @@ class MailListV2Es2 extends Base { | ||
| 105 | $where['seen'] = $seen; | 105 | $where['seen'] = $seen; |
| 106 | } | 106 | } |
| 107 | } | 107 | } |
| 108 | + // 回复 | ||
| 109 | + if (paramHas('answered')) { | ||
| 110 | + $query['query']['bool']['must'][] = ['term' => ['answered' => app()->request('answered', 0, 'bool_Val') ? 1 : 0]]; | ||
| 111 | + } | ||
| 108 | // 搜索标题 | 112 | // 搜索标题 |
| 109 | $keyword = app()->request('keyword'); | 113 | $keyword = app()->request('keyword'); |
| 110 | if($keyword){ | 114 | if($keyword){ |
-
请 注册 或 登录 后发表评论