Active.php 779 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Gold
  5. * Date: 2024/3/6
  6. * Time: 14:56
  7. */
  8. namespace app\user\controller;
  9. use app\common\model\User;
  10. use library\Controller;
  11. /**
  12. * 收货地址
  13. * Class Delivery
  14. * @package app\user\controller
  15. */
  16. class Active extends Controller
  17. {
  18. /**
  19. * 列表
  20. * @auth true
  21. * @menu true
  22. * @throws \think\Exception
  23. * @throws \think\db\exception\DataNotFoundException
  24. * @throws \think\db\exception\ModelNotFoundException
  25. * @throws \think\exception\DbException
  26. * @throws \think\exception\PDOException
  27. */
  28. public function index()
  29. {
  30. $this->usersTotal = 100;
  31. $this->goodsTotal = 100;
  32. $this->orderTotal = 100;
  33. $this->amountTotal = 100;
  34. $this->fetch();
  35. }
  36. }