浏览代码

商品列表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;
     }