1234567891011121314151617181920212223242526 |
- <?php
- namespace app\model;
- use think\Model;
- class LotteryActivityGoods extends Model
- {
-
- /**
- * 图片拼接
- */
- public function getGoodImgAttr($value)
- {
- if (empty($value)) return $value;
- $ali_oss_bindurl = config('app.ali_oss_bindurl');
- $url = 'http://' . $ali_oss_bindurl . '/' . $value;
- return $url;
- }
- /*public function setGoodImgAttr($value)
- {
- $ali_oss_bindurl = config('app.ali_oss_bindurl');
- $url = str_replace($ali_oss_bindurl,'',$value);
- return $url;
- }*/
- }
|