Commit 1d5a6ae0 authored by zw's avatar zw

报备时间轴显示对内地址

parent 0786a9b8
...@@ -373,21 +373,6 @@ class OrderLog extends Basic ...@@ -373,21 +373,6 @@ class OrderLog extends Basic
} }
/**
* 报备时间轴
*/
public function selectReportAll()
{
$params = $this->params;
/* $params = array(
"order_id" => 38024,
);*/
if (!isset($params["order_id"])) {
return $this->response("101", "请求参数错误");
}
$data = [];
return $this->response("200", "request success", $data);
}
/** /**
* 报备时间轴 * 报备时间轴
...@@ -413,7 +398,7 @@ class OrderLog extends Basic ...@@ -413,7 +398,7 @@ class OrderLog extends Basic
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException * @throws \think\exception\DbException
*/ */
public function selectReportAllV3() public function selectReportAll()
{ {
$params = $this->params; $params = $this->params;
/* $params = array( /* $params = array(
...@@ -422,7 +407,7 @@ class OrderLog extends Basic ...@@ -422,7 +407,7 @@ class OrderLog extends Basic
if (!isset($params["order_id"])) { if (!isset($params["order_id"])) {
return $this->response("101", "请求参数错误"); return $this->response("101", "请求参数错误");
} }
$data = $this->service_->selectListByOrderNoV3($params["order_id"]); $data = $this->service_->selectListByOrderNo($params["order_id"]);
return $this->response("200", "request success", $data); return $this->response("200", "request success", $data);
} }
......
...@@ -276,7 +276,7 @@ class OrderLogService ...@@ -276,7 +276,7 @@ class OrderLogService
* @throws \think\db\exception\ModelNotFoundException * @throws \think\db\exception\ModelNotFoundException
* @throws \think\exception\DbException * @throws \think\exception\DbException
*/ */
public function selectListByOrderNoV3($order_id) public function selectListByOrderNo($order_id)
{ {
$result = []; $result = [];
$sort = 0; $sort = 0;
...@@ -383,13 +383,6 @@ class OrderLogService ...@@ -383,13 +383,6 @@ class OrderLogService
//todo 删除 //todo 删除
} }
/**
* @param $order_id
*/
public function selectListByOrderNo($order_id)
{
//todo shanchu
}
public function arr2tree($list) public function arr2tree($list)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment