Index.php 441 B

123456789101112131415161718192021222324252627
  1. <?php
  2. namespace app\index\controller;
  3. use app\api\services\UserServices;
  4. use app\common\model\ScoreLog;
  5. use app\model\UserWithdrawalModel;
  6. use app\Request;
  7. use think\facade\Db;
  8. use think\facade\View;
  9. class Index
  10. {
  11. protected $service = null;
  12. public function __construct( UserServices $services)
  13. {
  14. $this->service = $services;
  15. }
  16. public function index(Request $request){
  17. return View::fetch();
  18. }
  19. }