截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }