|
|
@@ -482,6 +482,17 @@ class Product extends Api
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取示例图片
|
|
|
+ */
|
|
|
+ public function Get_Images(){
|
|
|
+ if (!$this->request->isGet()) {
|
|
|
+ $this->error('请求错误');
|
|
|
+ }
|
|
|
+// $param = $this->request->param();
|
|
|
+ $img = Db::name('images')->select();
|
|
|
+ $this->success('获取成功', $img);
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|