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.
aku_new_community/lib/pages/industry_committee/industry_committee_page.dart

205 lines
7.0 KiB

2 years ago
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:common_utils/common_utils.dart';
import 'package:flutter_easyrefresh/easy_refresh.dart';
import 'package:get/get.dart';
import 'package:url_launcher/url_launcher.dart';
3 years ago
import 'package:aku_new_community/base/base_style.dart';
import 'package:aku_new_community/constants/app_theme.dart';
3 years ago
import 'package:aku_new_community/constants/saas_api.dart';
3 years ago
import 'package:aku_new_community/model/common/img_model.dart';
import 'package:aku_new_community/model/user/committee_item_model.dart';
import 'package:aku_new_community/utils/headers.dart';
import 'package:aku_new_community/widget/bee_scaffold.dart';
import '../../utils/network/net_util.dart';
class IndustryCommitteePage extends StatefulWidget {
3 years ago
IndustryCommitteePage({Key? key}) : super(key: key);
@override
_IndustryCommitteePageState createState() => _IndustryCommitteePageState();
}
class _IndustryCommitteePageState extends State<IndustryCommitteePage> {
List<CommitteeItemModel> _models = [];
EasyRefreshController _refreshController = EasyRefreshController();
3 years ago
@override
void initState() {
super.initState();
// Future.delayed(Duration(milliseconds: 0), () async {
// var agreement =
// await HiveStore.appBox?.get('IndustryCommitteePage') ?? false;
// if (!agreement) {
// await TipsDialog.tipsDialog();
// HiveStore.appBox!.put('IndustryCommitteePage', true);
// }
// });
}
Widget _buildBottomNavi() {
return [
MaterialButton(
onPressed: () {
Get.dialog(CupertinoAlertDialog(
title: '0574-87760023'.text.isIntrinsic.make(),
actions: [
CupertinoDialogAction(
child: '取消'.text.isIntrinsic.make(),
onPressed: Get.back,
),
CupertinoDialogAction(
child: '呼叫'.text.isIntrinsic.orange500.make(),
onPressed: () {
launch('tel:10086');
Get.back();
},
),
],
));
},
height: 98.w,
color: Color(0xFF2A2A2A),
child: '业委会电话'.text.white.size(32.sp).make(),
)
.box
.color(Color(0xFF2A2A2A))
.padding(EdgeInsets.only(
bottom: MediaQuery.of(context).viewPadding.bottom,
))
.make()
.expand(),
// MaterialButton(
// onPressed: CommitteeMailboxPage().to,
// height: 98.w,
// color: kPrimaryColor,
// child: '业委会信箱'.text.size(32.sp).color(ktextPrimary).make(),
// )
// .box
// .color(kPrimaryColor)
// .padding(EdgeInsets.only(
// bottom: MediaQuery.of(context).viewPadding.bottom,
// ))
// .make()
// .expand(),
].row();
}
Widget _buildCard(CommitteeItemModel model) {
return VxBox(
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
ClipRRect(
borderRadius: BorderRadius.circular(4.w),
child: FadeInImage.assetNetwork(
placeholder: R.ASSETS_IMAGES_PLACEHOLDER_WEBP,
image: SAASAPI.image(ImgModel.first(model.imgList)),
height: 150.w,
width: 150.w,
fit: BoxFit.cover,
),
),
24.wb,
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
[
3 years ago
model.name!.text.size(28.sp).color(ktextPrimary).make(),
Spacer(),
Container(
height: 44.w,
padding:
EdgeInsets.symmetric(horizontal: 22.w, vertical: 6.w),
child: model.industryCommitteeTypeName!.text
.size(24.sp)
.color(ktextPrimary)
.bold
.make(),
decoration: BoxDecoration(
color: Color(0xFFFFF3CD),
borderRadius: BorderRadius.circular(22.w),
border: Border.all(color: Color(0xFFFFC40C), width: 1.w),
),
),
].row(),
15.hb,
...[
'住址:${model.buildingName}${model.unitName}单元${model.estateName}房间'
.text
.size(23.sp)
.color(ktextSubColor)
.make(),
// '任职期限XXXXX'.text.size(24.sp).color(ktextSubColor).make(),
'任职期限:${DateUtil.formatDate(model.appointmentStartDT, format: 'yyyy年MM月dd日')}-${DateUtil.formatDate(model.appointmentEndDT, format: 'yyyy年MM月dd日')}'
.text
.size(23.sp)
.color(ktextSubColor)
.make(),
].sepWidget(separate: 10.hb),
],
).expand(),
],
),
).padding(EdgeInsets.all(20.w)).white.withRounded(value: 8.w).make();
}
Widget build(BuildContext context) {
4 years ago
return BeeScaffold(
title: '业委会',
systemStyle: SystemStyle.genStyle(bottom: Color(0xFF2A2A2A)),
body: Container(
child: EasyRefresh(
firstRefresh: true,
header: MaterialHeader(),
controller: _refreshController,
onRefresh: () async {
var base = await NetUtil().get(SAASAPI.committeeStaff.list);
if (base.success) {
print(base.success);
_models = (base.data as List)
.map((e) => CommitteeItemModel.fromJson(e))
.toList();
}
setState(() {});
},
child: ListView.separated(
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 24.w),
itemBuilder: (context, index) {
return _buildCard(_models[index]);
},
separatorBuilder: (context, index) {
return Divider(
thickness: 1.w,
height: 40.w,
color: Color(0xFFD8D8D8),
);
},
itemCount: _models.length,
),
),
),
// BeeListView<CommitteeItemModel>(
// path: SAASAPI.committeeStaff.list,
// convert: (model) {
// return model.rows.map((e) => CommitteeItemModel.fromJson(e)).toList();
// },
// controller: _refreshController,
// builder: (items) {
// return ListView.separated(
// padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 20.w),
// itemBuilder: (context, index) {
// return _buildCard(items[index]);
// },
// separatorBuilder: (context, index) => 20.hb,
// itemCount: items.length,
// );
// },
// ),
bottomNavi: _buildBottomNavi(),
);
}
}