截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AccountLog.php 681B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\admin\controller\account_log;
  3. use app\common\basics\AdminBase;
  4. use app\admin\logic\account_log\AccountLogLogic;
  5. use app\common\model\AccountLog as AccountLogModel;
  6. use app\common\server\JsonServer;
  7. class AccountLog extends AdminBase
  8. {
  9. public function growthLists()
  10. {
  11. if($this->request->isAjax()) {
  12. $get = $this->request->get();
  13. $data = AccountLogLogic::growthLists($get);
  14. return JsonServer::success('', $data);
  15. }
  16. return view('', [
  17. 'typeDescArr' => AccountLogLogic::getTypeDesc(AccountLogModel::growth_change),
  18. 'time' => AccountLogLogic::getTime()
  19. ]);
  20. }
  21. }