소스 검색

商品列表sku

Gao 2 년 전
부모
커밋
7d1e5b80d3
1개의 변경된 파일10개의 추가작업 그리고 0개의 파일을 삭제
  1. 10 0
      application/common/model/Category.php

+ 10 - 0
application/common/model/Category.php

@@ -2,6 +2,7 @@
 
 namespace app\common\model;
 
+use app\common\service\InstallService;
 use think\Model;
 
 /**
@@ -84,6 +85,15 @@ class Category extends Model
                 $query->where('status', '=', $status);
             }
         })->order('weigh', 'desc')->with($with)->select())->toArray();
+        foreach ($list as $k=>$v){
+            if(!empty($v['goods'])){
+                foreach ($v['goods'] as $ko=>$goods){
+                    $list[$k]['goods'][$ko]['sku'] = GoodsSku::where('goods_id',$goods['id'])->field('id,name')->select();
+                    $list[$k]['goods'][$ko]['amount_install']=InstallService::getFee([$k=>$v]);//安装费
+                }
+            }
+
+        }
         return $list;
     }