xieruidong 2 年之前
父节点
当前提交
146d7d7043
共有 3 个文件被更改,包括 26 次插入1 次删除
  1. 12 1
      app/data/model/ShopProductionItem.php
  2. 14 0
      app/data/model/ShopPurchaseMsg.php
  3. 二进制
      public/static/images/ext/pdf.png

+ 12 - 1
app/data/model/ShopProductionItem.php

@@ -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);
+    }
 }

+ 14 - 0
app/data/model/ShopPurchaseMsg.php

@@ -0,0 +1,14 @@
+<?php
+
+namespace app\data\model;
+
+use app\data\model\helpers\PurchaseShow;
+use think\admin\Model;
+use think\db\Query;
+use think\facade\Db;
+use think\helper\Arr;
+
+class ShopPurchaseMsg extends Model
+{
+
+}

二进制
public/static/images/ext/pdf.png