|
@@ -251,7 +251,20 @@ class User extends Api
|
|
}
|
|
}
|
|
return $this->success('',$data);
|
|
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);
|
|
|
|
+ }
|
|
|
|
|
|
/**
|
|
/**
|
|
* 用户信息
|
|
* 用户信息
|