Spellgroup.php 355 B

123456789101112131415161718192021
  1. <?php
  2. namespace app\model;
  3. use think\Model;
  4. class Spellgroup extends Model
  5. {
  6. /**
  7. * 图片拼接
  8. */
  9. public function getCoverAttr($value)
  10. {
  11. if (empty($value)) return $value;
  12. $ali_oss_bindurl = config('app.ali_oss_bindurl');
  13. $url = 'https://' . $ali_oss_bindurl . '/' . $value;
  14. return $url;
  15. }
  16. }