You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
703 B
25 lines
703 B
import 'package:akuCommunity/constants/api.dart';
|
|
import 'package:akuCommunity/utils/network/base_model.dart';
|
|
import 'package:akuCommunity/utils/network/net_util.dart';
|
|
import 'package:bot_toast/bot_toast.dart';
|
|
import 'package:dio/dio.dart';
|
|
|
|
class SignFunc {
|
|
static Future sendMessageCode(String phone) async {
|
|
BaseModel baseModel = await NetUtil().post(
|
|
API.login.sendSMSCode,
|
|
params: {'tel': phone},
|
|
showMessage: true,
|
|
);
|
|
return baseModel;
|
|
}
|
|
|
|
static Future<Response> login(String phone, String code) async {
|
|
Response response = await NetUtil().dio.post(
|
|
API.login.loginBySMS,
|
|
data: {'tel': phone, 'code': code},
|
|
);
|
|
return response;
|
|
}
|
|
}
|