| 123456789101112131415161718192021222324252627 |
- <?php
- namespace app\index\controller;
- use app\api\services\UserServices;
- use app\common\model\ScoreLog;
- use app\model\UserWithdrawalModel;
- use app\Request;
- use think\facade\Db;
- use think\facade\View;
- class Index
- {
- protected $service = null;
- public function __construct( UserServices $services)
- {
- $this->service = $services;
- }
- public function index(Request $request){
- return View::fetch();
- }
- }
|