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.
201 lines
6.2 KiB
201 lines
6.2 KiB
// Flutter imports:
|
|
import 'package:akuCommunity/base/base_style.dart';
|
|
import 'package:akuCommunity/const/resource.dart';
|
|
import 'package:akuCommunity/constants/api.dart';
|
|
import 'package:akuCommunity/model/manager/life_pay_model.dart';
|
|
import 'package:akuCommunity/pages/personal/widget/order_card.dart';
|
|
import 'package:akuCommunity/pages/things_page/widget/bee_list_view.dart';
|
|
import 'package:akuCommunity/provider/user_provider.dart';
|
|
import 'package:akuCommunity/utils/bee_parse.dart';
|
|
import 'package:akuCommunity/widget/bee_divider.dart';
|
|
import 'package:akuCommunity/widget/buttons/bee_check_box.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_easyrefresh/easy_refresh.dart';
|
|
import 'package:get/get_state_manager/get_state_manager.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
// Package imports:
|
|
import 'package:velocity_x/velocity_x.dart';
|
|
|
|
// Project imports:
|
|
import 'package:akuCommunity/pages/life_pay/life_pay_record_page/life_pay_record_page.dart';
|
|
import 'package:akuCommunity/utils/headers.dart';
|
|
import 'package:akuCommunity/widget/bee_scaffold.dart';
|
|
|
|
class LifePayPage extends StatefulWidget {
|
|
LifePayPage({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_LifePayPageState createState() => _LifePayPageState();
|
|
}
|
|
|
|
class _LifePayPageState extends State<LifePayPage> {
|
|
EasyRefreshController _controller;
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_controller = EasyRefreshController();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_controller?.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
Widget _buildHouseCard(
|
|
String title,
|
|
String detail,
|
|
) {
|
|
return Padding(
|
|
padding: EdgeInsets.all(32.w),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
'报修房屋'.text.black.size(28.sp).make(),
|
|
32.w.heightBox,
|
|
GestureDetector(
|
|
onTap: () {},
|
|
child: Row(
|
|
children: [
|
|
Image.asset(
|
|
R.ASSETS_ICONS_HOUSE_PNG,
|
|
width: 60.w,
|
|
height: 60.w,
|
|
),
|
|
40.w.widthBox,
|
|
Expanded(
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
title.text.black.size(32.sp).bold.make(),
|
|
10.w.heightBox,
|
|
detail.text.black.size(32.sp).bold.make()
|
|
],
|
|
),
|
|
),
|
|
Icon(
|
|
CupertinoIcons.chevron_forward,
|
|
size: 40.w,
|
|
),
|
|
],
|
|
),
|
|
),
|
|
24.w.heightBox,
|
|
BeeDivider.horizontal(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildCard(LifePayMolde model) {
|
|
return Container(
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.circular(8.w), color: kForeGroundColor),
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: [
|
|
BeeCheckBox.round(
|
|
onChange: (value) {},
|
|
),
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
'${BeeParse.getCustomYears(model.years)}(${model.years})'
|
|
.text
|
|
.color(ktextSubColor)
|
|
.size(28.sp)
|
|
.make(),
|
|
24.w.heightBox,
|
|
'待缴:${model.paymentNum}项'
|
|
.text
|
|
.color(ktextPrimary)
|
|
.size(28.sp)
|
|
.make(),
|
|
24.w.heightBox,
|
|
RichText(
|
|
text: TextSpan(
|
|
text: '合计:',
|
|
style: TextStyle(
|
|
color: ktextPrimary,
|
|
fontSize: 28.sp,
|
|
fontWeight: FontWeight.bold),
|
|
children: [
|
|
TextSpan(
|
|
text: '¥',
|
|
style: TextStyle(
|
|
color: kDangerColor,
|
|
fontSize: 28.sp,
|
|
fontWeight: FontWeight.bold)),
|
|
]))
|
|
],
|
|
),
|
|
Column(
|
|
children: [
|
|
GestureDetector(
|
|
onTap: () {},
|
|
child: Container(
|
|
decoration: BoxDecoration(
|
|
color: Color(0xFF2A2A2A),
|
|
borderRadius: BorderRadius.circular(22.w),
|
|
),
|
|
padding:
|
|
EdgeInsets.symmetric(horizontal: 20.w, vertical: 8.w),
|
|
child: '选择明细'.text.color(Colors.white).size(22.sp).make(),
|
|
),
|
|
),
|
|
Spacer(),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
UserProvider userProvider = Provider.of<UserProvider>(context);
|
|
return BeeScaffold(
|
|
title: '生活缴费',
|
|
actions: [
|
|
InkWell(
|
|
onTap: () {
|
|
LifePayRecordPage().to();
|
|
},
|
|
child: Container(
|
|
padding: EdgeInsets.fromLTRB(32.w, 28.w, 32.w, 20.w),
|
|
alignment: Alignment.center,
|
|
child: '缴费记录'.text.black.size(28.sp).make(),
|
|
),
|
|
),
|
|
],
|
|
body: BeeListView(
|
|
path: API.manager.dailyPaymentList,
|
|
controller: _controller,
|
|
convert: (model) {
|
|
return model.tableList
|
|
.map((e) => LifePayMolde.fromJson(e))
|
|
.toList();
|
|
},
|
|
builder: (items) {
|
|
return
|
|
Column(
|
|
children: [
|
|
// _buildHouseCard(kEstateName, userProvider.userDetailModel.estateNames.isEmpty
|
|
// ? ''
|
|
// : BeeParse.getEstateName(
|
|
// userProvider.userDetailModel.estateNames[0])),
|
|
ListView.builder(
|
|
itemBuilder: (context, index) {
|
|
return _buildCard(items[index]);
|
|
},
|
|
itemCount: items.length,
|
|
).expand(),
|
|
],
|
|
);
|
|
}),
|
|
);
|
|
}
|
|
}
|