截流自动化的商城平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Shop.php 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. namespace app\shop\controller\finance;
  3. use app\common\basics\ShopBase;
  4. use app\common\server\JsonServer;
  5. use app\shop\logic\finance\ShopLogic;
  6. /**
  7. * 账号明细
  8. * Class Shop
  9. * @package app\shop\controller\finance
  10. */
  11. class Shop extends ShopBase
  12. {
  13. /**
  14. * @Notes: 账户明细列表
  15. * @Author: 张无忌
  16. */
  17. public function account()
  18. {
  19. if($this->request->isAjax()){
  20. $get= $this->request->get();
  21. $lists = ShopLogic::account($get, $this->shop_id);
  22. return JsonServer::success('获取成功', $lists);
  23. }
  24. return view();
  25. }
  26. /**
  27. * @notes 导出Excel
  28. * @return \think\response\Json
  29. * @author 段誉
  30. * @date 2022/4/24 11:57
  31. */
  32. public function export()
  33. {
  34. $params = $this->request->get();
  35. $result = ShopLogic::account($params, $this->shop_id, true);
  36. if(false === $result) {
  37. return JsonServer::error(ShopLogic::getError() ?: '导出失败');
  38. }
  39. return JsonServer::success('', $result);
  40. }
  41. }