Commit fce6ac24 authored by hujun's avatar hujun

客户查看日志

parent 0b02af89
......@@ -722,4 +722,16 @@ class Member extends Basic{
return $this->response("200", "成功",['data'=>$res,'total'=>$res_total]);
}
/**
* 客户查看日志
*
* @return \think\response\View
*/
public function lookUserLog()
{
if (!$this->request->isAjax()) {
return view('look_user_log');
}
}
}
{layout name="global/frame_two_tpl" /}
客户查看日志
\ No newline at end of file
......@@ -497,6 +497,7 @@ Route::group('index', [
'addUserBind' => ['index/member/addUserBind', ['method' => 'get|post']],
'removeUserBind' => ['index/member/removeUserBind', ['method' => 'get|post']],
'getUserBindHistory' => ['index/member/getUserBindHistory', ['method' => 'get|post']],
'lookUserLog' => ['index/member/lookUserLog', ['method' => 'get|post']], //客户查看日志
'saveActivity' => ['index/Activity/saveActivity', ['method' => 'POST|GET']],//新增或修改活动
'getActivityList' => ['index/Activity/getActivityList', ['method' => 'POST|GET']],//获取活动
......
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