// +---------------------------------------------------------------------- declare (strict_types=1); namespace app\api\model; use app\common\model\ActiveCol as ActiveColModel; /** * 活动栏目模型类 * Class User * @package app\common\model */ class ActiveCol extends ActiveColModel { //追加字段 protected $append = [ 'col_pic' ]; public function getColPicAttr($value, $data) { $file = $this->with(['colImage'])->find(); return $file['col_image_url']; } }