'blobt\grid\CheckboxColumn', 'width' => '2%', 'align' => 'center' ], 'id', 'name', ['attribute' => 'icon', 'contentOptions' => [ 'align' => 'center', ], 'width'=>'10%', 'format' => 'raw', 'value' => function ($model) { return $model->iconFile ? Html::img(['/'.$model->iconFile->path], ['style' => 'width:80px']) : '
未设置
'; } ], 'sort_order', [ 'class' => 'iron\grid\ActionColumn', 'align' => 'center', 'config' => [ [ 'name' => 'update', 'icon' => 'pencil', 'title' => '修改' ], [ 'name' => 'delete', 'icon' => 'trash', 'title' => '删除', 'contents' => '确定删除?' ] ], ], ]; } /** * @param $params * @return ActiveDataProvider * 不分页的所有数据 */ public function allData($params) { $query = Category::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 = Category::find()->where(['is_delete' => Category::IS_DELETE_NO]); // 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){ $query->andFilterWhere(['is_delete' => Category::IS_DELETE_NO]); 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, 'pid' => $this->pid, 'goods_count' => $this->goods_count, 'sort_order' => $this->sort_order, 'is_show' => $this->is_show, 'is_delete' => $this->is_delete, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'icon' => $this->icon, ]); $query->andFilterWhere(['like', 'name', $this->name]); 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; } }