Commit 8e951ce3 authored by hujun's avatar hujun

入账日期

parent 76e6515c
...@@ -139,6 +139,10 @@ class Collection extends Basic ...@@ -139,6 +139,10 @@ class Collection extends Basic
if (!empty($v['user_phone'])) { if (!empty($v['user_phone'])) {
$data['data']['list'][$k]['user_phone'] = substr_replace($v['user_phone'],'****',3,4); $data['data']['list'][$k]['user_phone'] = substr_replace($v['user_phone'],'****',3,4);
} }
if (!empty($v['income_time'])) {
$data['data']['list'][$k]['income_time'] = date('Y-m-d', strtotime($v['income_time']));
}
} }
$data['data']['list'] = $this->numberTransitionString($data['data']['list']); $data['data']['list'] = $this->numberTransitionString($data['data']['list']);
return $this->response(200, "", $data['data']); return $this->response(200, "", $data['data']);
......
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