Advert.php 326 B

12345678910111213141516171819
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class Advert extends Model{
  5. public function position(){
  6. return $this->belongsTo('AdvertPos','pos_id');
  7. }
  8. public function getFullPathAttr($value,$data){
  9. $value = $data['path'];
  10. if (!empty($value)) {
  11. return request()->domain().$value;
  12. }
  13. return $value;
  14. }
  15. }