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.
33 lines
1.1 KiB
33 lines
1.1 KiB
import 'package:aku_new_community/constants/api.dart';
|
|
import 'package:aku_new_community/utils/network/base_model.dart';
|
|
import 'package:aku_new_community/utils/network/net_util.dart';
|
|
import 'package:aku_new_community/widget/others/user_tool.dart';
|
|
|
|
class PropertyFunc {
|
|
///根据房产id查询对应的预付款充值金额
|
|
static Future<double> getDailyPaymentPrePay() async {
|
|
BaseModel baseModel =
|
|
await NetUtil().get(API.manager.dailyPaymentPrePay, params: {
|
|
"estateId": UserTool.appProveider.selectedHouse!.estateId,
|
|
});
|
|
if (baseModel.status ?? false) {
|
|
return (baseModel.data as num).toDouble();
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
///根据房产id查询对应的未缴费金额
|
|
static Future<double> getFindUnpaidAmount() async {
|
|
BaseModel baseModel =
|
|
await NetUtil().get(API.manager.findUnpaidAmount, params: {
|
|
"estateId": UserTool.appProveider.selectedHouse!.estateId,
|
|
});
|
|
if (baseModel.status ?? false) {
|
|
return (baseModel.data as num).toDouble();
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
}
|