正在显示
1 个修改的文件
包含
18 行增加
和
0 行删除
@@ -231,4 +231,22 @@ class Common extends Api | @@ -231,4 +231,22 @@ class Common extends Api | ||
231 | $res = Db::name('order')->where('order_sn', $order_sn)->update(['status' => 2]); | 231 | $res = Db::name('order')->where('order_sn', $order_sn)->update(['status' => 2]); |
232 | $this->res($res); | 232 | $this->res($res); |
233 | } | 233 | } |
234 | + | ||
235 | + | ||
236 | + public function loveIMG() | ||
237 | + { | ||
238 | + $Image = Db::name('lovecar')->where('id', 1)->value('images'); | ||
239 | + if (empty($Image)) { | ||
240 | + $data = [ | ||
241 | + 'img' => '' | ||
242 | + ]; | ||
243 | + } else { | ||
244 | + $data = [ | ||
245 | + 'img' => cdnurl($Image) | ||
246 | + ]; | ||
247 | + } | ||
248 | + $this->success('成功', $data); | ||
249 | + } | ||
234 | } | 250 | } |
251 | + | ||
252 | + |
-
请 注册 或 登录 后发表评论