mod: 图标&样式&网页登录

This commit is contained in:
guozhigq
2023-05-08 10:17:35 +08:00
parent a66bb08ca8
commit 89766a72d9
59 changed files with 449 additions and 149 deletions

View File

@ -0,0 +1,14 @@
import 'package:get/get.dart';
import 'package:pilipala/http/user.dart';
class MineController extends GetxController {
@override
void onInit() {
super.onInit();
// queryUserInfo();
}
Future queryUserInfo() async {
var res = await UserHttp.userInfo();
}
}