From 81a2ab50016dec43d8ac8c6ef9a14df1a4245038 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=AD=90=E8=B4=A4?= Date: Mon, 12 Jan 2026 09:44:07 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AE=9E=E5=90=8D=E8=AE=A4?= =?UTF-8?q?=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/controller/mine/auth_controller.dart | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/controller/mine/auth_controller.dart b/lib/controller/mine/auth_controller.dart index 2d582f4..909a948 100644 --- a/lib/controller/mine/auth_controller.dart +++ b/lib/controller/mine/auth_controller.dart @@ -1,4 +1,5 @@ import 'dart:async'; +import 'package:dating_touchme_app/controller/home/home_controller.dart'; import 'package:get/get.dart'; import 'package:flutter_smart_dialog/flutter_smart_dialog.dart'; import 'package:get_storage/get_storage.dart'; @@ -121,6 +122,11 @@ class AuthController extends GetxController { : Get.put(RoomController()); _roomController.matchmakerFlag.value = GlobalData().userData!.matchmakerFlag!; + + + final HomeController hController = Get.find(); + hController.refreshRecommendData(); + hController.refreshNearbyData(); if(type == 1){ // 进入认证成功之后的下一个页面; Get.off(() => MatchSpreadPage());