|
|
<?php
namespace backend\modules\shop\models\searchs;
use yii\base\Model; use yii\data\ActiveDataProvider; use yii\helpers\ArrayHelper; use backend\modules\shop\models\ars\Comment;
/** * CommentSearch represents the model behind the search form of `backend\modules\shop\models\ars\Comment`. */ class CommentSearch extends Comment { /** * @return array * 增加创建时间查询字段 */ public function attributes() { return ArrayHelper::merge(['created_at_range'], parent::attributes()); } /** * {@inheritdoc} */ public function rules() { return [ [['id', 'user_id', 'order_goods_id', 'star', 'status', 'updated_at', 'created_at'], 'integer'], [['content'], 'safe'], ['created_at_range','safe'], ]; }
/** * {@inheritdoc} */ public function scenarios() { // bypass scenarios() implementation in the parent class
return Model::scenarios(); } /** * @return array * 列格式 */ public function columns() { return [ 'id', 'user_id', [ 'attribute' => 'order_goods_id', 'value' => function ($model) { return $model->orderGoods->goods_name; }, 'label' => '商品名称' ], 'star', 'content', [ 'attribute' => 'status', 'value' => function ($model) { return Comment::$commentStatus[$model->status]; }, 'label' => '状态' ], 'created_at:datetime', [ 'class' => 'iron\grid\ActionColumn', 'align' => 'center', 'config' => [ [ 'name' => 'view', 'icon' => 'list', 'title' => '详情', ], [ 'name' => 'display', 'icon' => 'eye', 'title' => '显示', 'hide' => [ 'attributes' => [ 'status' ], 'values' => [ Comment::STATUS_DISPLAY ] ] ], [ 'name' => 'hide', 'icon' => 'eye', 'title' => '隐藏', 'hide' => [ 'attributes' => [ 'status' ], 'values' => [ Comment::STATUS_HIDE ] ] ], ] ], ]; } /** * @param $params * @return ActiveDataProvider * 不分页的所有数据 */ public function allData($params) { $query = Comment::find(); $dataProvider = new ActiveDataProvider([ 'query' => $query, 'pagination' => false, 'sort' => false ]); $this->load($params); return $this->filter($query, $dataProvider); }
/** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Comment::find();
// add conditions that should always apply here
$dataProvider = new ActiveDataProvider([ 'query' => $query, 'pagination' => [ 'pageSizeLimit' => [1, 200] ], 'sort' => [ 'defaultOrder' => [ 'id' => SORT_DESC, ] ], ]);
$this->load($params); return $this->filter($query, $dataProvider); } /** * @param $query * @param $dataProvider * @return ActiveDataProvider * 条件筛选 */ private function filter($query, $dataProvider){ if (!$this->validate()) { // uncomment the following line if you do not want to return any records when validation fails
// $query->where('0=1');
return $dataProvider; }
// grid filtering conditions
$query->andFilterWhere([ 'id' => $this->id, 'user_id' => $this->user_id, 'order_goods_id' => $this->order_goods_id, 'star' => $this->star, 'status' => $this->status, 'updated_at' => $this->updated_at, 'created_at' => $this->created_at, ]);
$query->andFilterWhere(['like', 'content', $this->content]); if ($this->created_at_range) { $arr = explode(' ~ ', $this->created_at_range); $start = strtotime($arr[0]); $end = strtotime($arr[1]) + 3600 * 24; $query->andFilterWhere(['between', 'created_at', $start, $end]); } return $dataProvider; } }
|