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