getPk(); $row->getQuery()->where($pk, $row[$pk])->update(['weigh' => $row[$pk]]); } }); } public function getTypeList() { return ['in' => __('Type in'), 'out' => __('Type out')]; } public function getTypeTextAttr($value, $data) { $value = $value ? $value : (isset($data['type']) ? $data['type'] : ''); $list = $this->getTypeList(); return isset($list[$value]) ? $list[$value] : ''; } public function getImageAttr($value, $data) { if (!empty($value)) return cdnurl($value, true); } public static function allList($page, $limit,$params=[]){ $sort = "weigh desc,id desc"; // if(!empty($params['status'])){ // $params['status'] = '1'; // } return (new self)->getBaseList($params, $page, $limit,$sort); } }