| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- import 'dart:async';
- import 'package:flutter/material.dart';
- import 'package:shared_preferences/shared_preferences.dart';
- import 'package:flutter/cupertino.dart';
- import '../styles/colors.dart';
- import 'dart:ui';
- import '../styles/totast.dart';
- import '../widget/ITextInput.dart';
- import 'package:flutter_redux/flutter_redux.dart';
- import '../net/HttpManager.dart';
- import '../net/Result.dart';
- import 'Home.dart';
- import '../redux/AppState.dart';
- import '../redux/UserRedux.dart';
- import '../model/UserInfo.dart';
- class LoginSecond extends StatefulWidget {
- LoginSecond({Key key, this.phone}) : super(key: key);
- final String phone; // 用来储存传递过来的值
- @override
- LoginSecondState createState() => LoginSecondState();
- }
- class LoginSecondState extends State<LoginSecond> {
- String _sessionID;
- bool isSend = false; //是否发送
- int sendTime = 0;
- String inputCode;
- String useToken;
- Timer timer;
- @override
- void initState() {
- super.initState();
- Future.delayed(Duration.zero, () {
- sendMsg();
- });
- }
- @override
- Widget build(BuildContext context) {
- return WillPopScope(
- child: Container(
- color: BG_SUB_COLOR,
- child: Scaffold(
- appBar: AppBar(
- backgroundColor: BG_SUB_COLOR,
- centerTitle: true,
- elevation: 0,
- ),
- body: Container(
- color: BG_SUB_COLOR,
- child: CustomScrollView(
- slivers: <Widget>[
- SliverToBoxAdapter(
- child: Container(
- color: BG_SUB_COLOR,
- padding: EdgeInsets.symmetric(vertical: 30, horizontal: 15),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.start,
- children: <Widget>[
- Text(
- '验证码已发送至',
- style: TextStyle(color: Colors.white, fontSize: 28, fontWeight: FontWeight.bold),
- ),
- Container(
- margin: EdgeInsets.only(top: 45),
- child: Row(
- mainAxisAlignment: MainAxisAlignment.spaceBetween,
- children: <Widget>[
- Text(widget.phone, style: TextStyle(color: Color(0xFFF15436), fontSize: 20, fontWeight: FontWeight.bold)),
- FlatButton(
- highlightColor: BG_SUB_COLOR,
- textColor: PRIMARY_COLOR,
- child: Text(isSend ? '($sendTime)秒' : '重新发送'),
- disabledTextColor: Color(0xFF8D8E9C),
- onPressed: isSend
- ? null
- : () {
- if (timer != null) {
- timer.cancel();
- }
- sendMsg();
- },
- )
- ],
- ),
- ),
- Container(
- margin: EdgeInsets.only(top: 10),
- child: ITextField(
- maxLength: 6,
- keyboardType: ITextInputType.number,
- prefixIcon: Container(
- padding: EdgeInsets.all(10),
- // color: PRIMARY_COLOR,
- child: Image.asset(
- 'images/list_icon_yanzhengma.png',
- width: 20,
- ),
- ),
- hintText: '输入短信验证码',
- hintStyle: TextStyle(
- fontSize: 16,
- color: Color(0xFF727785),
- ),
- textStyle: TextStyle(color: Colors.white),
- fieldCallBack: (content) {
- setState(() {
- inputCode = content;
- });
- },
- counterStyle: TextStyle(color: BG_SUB_COLOR, fontSize: 0),
- ),
- ),
- Container(
- margin: EdgeInsets.only(top: 63, bottom: 20),
- width: double.infinity,
- height: 48,
- child: FlatButton(
- textColor: Colors.white,
- color: PRIMARY_COLOR,
- highlightColor: Color(0xFF763434),
- child: Text('注册/登录'),
- onPressed: () async {
- if (inputCode.length != 6) {
- Toast.show(context, '请输入验证码', 1500, 'info');
- } else {
- Toast.show(context, '加载中', -1, 'loading');
- final Result res =
- await HttpManager.post('auth/loginSms', data: {'phone': widget.phone, 'code': inputCode, 'requireToken': true});
- Toast.hide();
- if (res.success) {
- if (timer != null) {
- timer.cancel();
- }
- final prefs = await SharedPreferences.getInstance();
- await prefs.setString('token', res.token);
- HttpManager.token = res.token;
- StoreProvider.of<AppState>(context).dispatch(UpdateUserAction(UserInfo.fromJson(res.data)));
- Toast.show(context, '登录成功', 1500, 'success');
- Navigator.pushReplacement(
- context,
- CupertinoPageRoute(builder: (context) => HomePage()),
- );
- } else {
- Toast.show(context, res.error, 1500, 'info');
- }
- }
- },
- ),
- )
- ],
- ),
- ),
- )
- ],
- ),
- )),
- ),
- onWillPop: () {
- Toast.hide();
- Navigator.pop(context);
- return Future.value(false);
- });
- }
- Future<void> sendMsg() async {
- Toast.show(context, '加载中', -1, 'loading');
- final Result res = await HttpManager.post('userInfo/sendSms', data: {'mobile': widget.phone});
- Toast.hide();
- if (res.success) {
- Toast.show(context, '发送成功', 1500, 'success');
- _sessionID = res.data;
- setState(() {
- isSend = true;
- });
- sendTime = 60;
- timer = Timer.periodic(Duration(seconds: 1), (timer) {
- if (sendTime == 0) {
- setState(() {
- isSend = false;
- });
- } else {
- setState(() {
- sendTime = sendTime - 1;
- });
- }
- });
- } else {
- Toast.show(context, res.error, 1500, 'info');
- }
- }
- }
|