|
@@ -6,6 +6,8 @@ use app\common\controller\Api;
|
|
|
use app\common\model\ProductEcmall;
|
|
|
use app\common\model\ProductGeneral;
|
|
|
use app\common\model\ProductPro;
|
|
|
+use app\admin\model\Goods;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 产品接口
|
|
@@ -32,6 +34,7 @@ class Product extends Api
|
|
|
$res = ProductPro::all(function ($query){
|
|
|
$query->field('id,name,content,image');
|
|
|
});
|
|
|
+ array_push($res,Goods::get(['id'=>7]));
|
|
|
$this->success('请求成功',$res);
|
|
|
}
|
|
|
|