chenhao 4 年之前
父節點
當前提交
ee08ff63ee
共有 2 個文件被更改,包括 32 次插入2 次删除
  1. 18 1
      application/index/controller/Index.php
  2. 14 1
      application/index/controller/User.php

+ 18 - 1
application/index/controller/Index.php

@@ -133,7 +133,24 @@ class Index extends Controller
             return $this->error('暂未找到该账号');
         }
     }
-    
+
+
+
+
+
+    /**
+     * 订单详情
+     */
+    public function orderInfo()
+    {
+        $id = $this->request->get('id');
+
+        $data = Db::name('user_order')->where('id',$id)->find();
+
+        $images = explode('|',$data['image']);
+
+        return $this->success('',$images);
+    }
     
 //    /**
 //     * 上传图片

+ 14 - 1
application/index/controller/User.php

@@ -251,7 +251,20 @@ class User extends Api
         }
         return $this->success('',$data);
     }
-    
+
+    /**
+     * 订单详情
+     */
+    public function orderInfo()
+    {
+        $id = $this->request->get('id');
+
+        $data = Db::name('user_order')->where('id',$id)->find();
+
+        $images = explode('|',$data['image']);
+
+        return $this->success('',$images);
+    }
 
     /**
      * 用户信息