PolicyModel.php 407 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\common\model;
  3. use think\Cache;
  4. use think\Model;
  5. /**
  6. * 政策集锦模型
  7. */
  8. class PolicyModel extends Model
  9. {
  10. protected $name = 'policy_lists';
  11. public function getImageAttr($value)
  12. {
  13. return config('site.httpurl').$value;
  14. }
  15. public function getContentAttr($value)
  16. {
  17. return str_replace('src="','src="'.config('site.httpurl'),$value);
  18. }
  19. }