StyleValue.php
348 字节
<?php
namespace app\common\model;
use think\Model;
class StyleValue extends Model
{
/**
* 隐藏字段
* @var array
*/
protected $hidden = [
'createtime',
'updatetime'
];
public function getStyleValueImageAttr($value, $data)
{
return !empty($value) ? cdnurl($value,true) : '';
}
}