增加广告组件,个人中心

This commit is contained in:
唐明明
2022-05-27 17:52:17 +08:00
parent 4a635f3570
commit d64bf95b25
269 changed files with 3960 additions and 309 deletions

View File

@@ -1,8 +1,6 @@
import 'package:flutter/material.dart';
import '../auth/auth.dart';
import '../../https/auth_api.dart';
class StorePages extends StatefulWidget {
const StorePages({Key? key}) : super(key: key);
@@ -13,13 +11,14 @@ class StorePages extends StatefulWidget {
class _StorePagesState extends State<StorePages> {
@override
void initState() {
HttpApi().ApiPost(
'user/auth/sms',
body: {
'mobileNo': '18245180131',
'code': '0000',
},
);
// print('初始化');
// HttpApi().ApiPost(
// 'user/auth/sms',
// body: {
// 'mobileNo': '18245180131',
// 'code': '0000',
// },
// );
super.initState();
}