save(['weigh' => $row['id']]); }); } public function setFlagAttr($value, $data) { return is_array($value) ? implode(',', $value) : $value; } /** * 读取分类类型 * @return array */ public static function getTypeList() { return ['product'=>__('Product')]; } public function getTypeTextAttr($value, $data) { $value = $value ? $value : $data['type']; $list = $this->getTypeList(); return isset($list[$value]) ? $list[$value] : ''; } public function getFlagList() { return ['index' => __('Index')]; } public function getFlagTextAttr($value, $data) { $value = $value ? $value : $data['flag']; $valueArr = explode(',', $value); $list = $this->getFlagList(); return implode(',', array_intersect_key($list, array_flip($valueArr))); } /** * 读取分类列表 * @param string $type 指定类型 * @param string $status 指定状态 * @return array */ public static function getCategoryArray($type = null, $status = null) { $list = collection(self::where(function ($query) use ($type, $status) { if (!is_null($type)) { $query->where('type', '=', $type); } if (!is_null($status)) { $query->where('status', '=', $status); } })->order('weigh', 'desc')->select())->toArray(); return $list; } public function getIsTopList() { return ['0' => __('Is_top 0'), '1' => __('Is_top 1')]; } public function getIsTopTextAttr($value, $data) { $value = $value ? $value : (isset($data['is_top']) ? $data['is_top'] : ''); $list = $this->getIsTopList(); return isset($list[$value]) ? $list[$value] : ''; } /** * 关联上一级 * @return \think\model\relation\HasOne */ public function parent() { return $this->hasOne('category', 'id', 'pid'); } }