You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
402 B
PHP
26 lines
402 B
PHP
<?php
|
|
|
|
namespace Admin\Controller;
|
|
|
|
|
|
/**
|
|
* 订单控制器
|
|
*
|
|
* @author 鹿文学
|
|
*/
|
|
class OperationLogController extends ThinkController
|
|
{
|
|
public function test()
|
|
{
|
|
$this->addOperationLog(array(
|
|
"op_type"=>1,
|
|
"op_name"=>"添加用户",
|
|
"key"=>"test185",
|
|
"url"=>U("Member/user_info",array("user_id"=>252315))
|
|
));
|
|
}
|
|
|
|
|
|
|
|
}
|