|
@@ -7,9 +7,20 @@ use think\admin\Model;
|
|
|
class ShopProductionItem extends Model
|
|
|
{
|
|
|
protected $type=[
|
|
|
- 'enclosure'=>'array',
|
|
|
+ //'enclosure'=>'array',
|
|
|
];
|
|
|
public function offers(){
|
|
|
return $this->hasMany(ShopProductionOffer::class,'item_id');
|
|
|
}
|
|
|
+
|
|
|
+ public function getEnclosureAttr($file){
|
|
|
+ $files=json_decode($file,true);
|
|
|
+ foreach ($files as &$file){
|
|
|
+ $file['icon']=sprintf('%s/static/images/ext/pdf.png',request()->domain());
|
|
|
+ }
|
|
|
+ return $files;
|
|
|
+ }
|
|
|
+ public function setEnclosureAttr($file){
|
|
|
+ return json_encode($file?:[],256);
|
|
|
+ }
|
|
|
}
|