12345678910111213141516171819 |
- <?php
- namespace app\model;
- use think\Model;
- class ToolDecohelper extends Model
- {
- //
- /*
- * cover拼接
- */
- public function getCoverAttr($value)
- {
- if (empty($value)) return $value;
- $bindUrl = config('app.ali_oss_bindurl');
- return 'https://' . $bindUrl . '/' . $value;
- }
- }
|