ServiiceModel.php 303 B

12345678910111213141516171819
  1. <?php
  2. namespace app\common\model;
  3. use think\Cache;
  4. use think\Model;
  5. /**
  6. * 在线客服模型
  7. */
  8. class ServiiceModel extends Model
  9. {
  10. protected $name = 'service';
  11. public function getContentAttr($value)
  12. {
  13. return str_replace('src="','src="'.config('site.httpurl'),$value);
  14. }
  15. }