1
0

ToolDecohelper.php 325 B

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