Commit c1e4200b authored by zhuwei's avatar zhuwei

bug

parent cee38d61
......@@ -484,6 +484,11 @@ class Performance extends Basic
$page_size = empty($params['page_size']) ? 15 : $params['page_size'];
$result = $this->service_->paylogListPcInfo($params["id"],$params["type"], $start_day, $end_day, $page_no, $page_size);
foreach ($result["date"] as $key => $val) {
//截取字符串前3位
$result["date"][$key]['landmark'] = $val["landmark"] ? mb_substr($val["landmark"],0,3,'utf-8').'****' : '';
}
if ($result["code"] == 101) {
return $this->response("101", $result["date"]);
} else {
......
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