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.
21 lines
694 B
21 lines
694 B
import 'package:project_telephony/constants/api.dart';
|
|
import 'package:project_telephony/model/contant_list_model.dart';
|
|
import 'package:project_telephony/model/network/api_client.dart';
|
|
import 'package:project_telephony/utils/inner_model/base_list_model.dart';
|
|
|
|
|
|
import '../../../utils/toast/cloud_toast.dart';
|
|
|
|
class ContantFunc {
|
|
static Future<List<ContantListModel>> getFindByStatus(int status) async {
|
|
BaseListModel res =
|
|
await apiClient.requestList(API.app.findByStatus, data:{'status': status});
|
|
if(res.code!=0) {
|
|
CloudToast.show(res.msg);
|
|
return [];
|
|
}else{
|
|
return res.nullSafetyList.map((e) => ContantListModel.fromJson(e)).toList();
|
|
}
|
|
}
|
|
}
|