作者 郭静帆
1 个管道 的构建 通过 耗费 0 秒

公众号

... ... @@ -393,6 +393,7 @@ class Index extends Api
$deposit = new Inform;
$info['inform'] = $deposit->where(['status'=>'1','job_id'=>$job_id,'deletetime'=>null])->order('id desc')->field('id,content,status,job_id')->find();
$info->visible(['id','images','job_name','factory_price_total','factory_price','subsidy_price','salary','content','lng','lat','label_ids'])->append(['is_collect','inform']);
$this->success('成功',$info);
}
... ...
... ... @@ -46,4 +46,13 @@ class Job extends Model
}
return $arr;
}
public function getContentAttr($value, $data)
{
$content = $data['content'];
$content = str_replace("<img src=\"/uploads", "<img src=\"" . request()->domain() . "/uploads", $content);
$content = str_replace("<video src=\"/uploads", "<video style=\"width: 100%;!important\" src=\"" . request()->domain() . "/uploads", $content);
return $content;
}
}
... ...