AdminLog.php 226 B

12345678910111213141516171819
  1. <?php
  2. namespace app\admin\behavior;
  3. use think\Config;
  4. class AdminLog
  5. {
  6. public function run(&$params)
  7. {
  8. if (request()->isPost())
  9. {
  10. \app\admin\model\AdminLog::record();
  11. }
  12. }
  13. }