|
|
@ -1,16 +1,20 @@
|
|
|
|
import 'package:aku_new_community/base/base_style.dart';
|
|
|
|
import 'package:aku_new_community/base/base_style.dart';
|
|
|
|
|
|
|
|
import 'package:aku_new_community/constants/saas_api.dart';
|
|
|
|
import 'package:aku_new_community/extensions/widget_list_ext.dart';
|
|
|
|
import 'package:aku_new_community/extensions/widget_list_ext.dart';
|
|
|
|
import 'package:aku_new_community/gen/assets.gen.dart';
|
|
|
|
import 'package:aku_new_community/gen/assets.gen.dart';
|
|
|
|
import 'package:aku_new_community/models/user/my_house_model.dart';
|
|
|
|
import 'package:aku_new_community/models/user/my_house_model.dart';
|
|
|
|
import 'package:aku_new_community/ui/profile/new_house/add_house_page.dart';
|
|
|
|
import 'package:aku_new_community/ui/profile/new_house/add_house_page.dart';
|
|
|
|
import 'package:aku_new_community/ui/profile/new_house/apply_record_page.dart';
|
|
|
|
import 'package:aku_new_community/ui/profile/new_house/apply_record_page.dart';
|
|
|
|
import 'package:aku_new_community/ui/profile/new_house/widgets/add_house_button.dart';
|
|
|
|
import 'package:aku_new_community/ui/profile/new_house/widgets/add_house_button.dart';
|
|
|
|
|
|
|
|
import 'package:aku_new_community/utils/network/net_util.dart';
|
|
|
|
import 'package:aku_new_community/widget/bee_divider.dart';
|
|
|
|
import 'package:aku_new_community/widget/bee_divider.dart';
|
|
|
|
import 'package:aku_new_community/widget/bee_scaffold.dart';
|
|
|
|
import 'package:aku_new_community/widget/bee_scaffold.dart';
|
|
|
|
import 'package:aku_new_community/widget/dialog/certification_dialog.dart';
|
|
|
|
import 'package:aku_new_community/widget/dialog/certification_dialog.dart';
|
|
|
|
import 'package:aku_new_community/widget/others/user_tool.dart';
|
|
|
|
import 'package:aku_new_community/widget/others/user_tool.dart';
|
|
|
|
import 'package:aku_new_community/widget/tag/bee_tag.dart';
|
|
|
|
import 'package:aku_new_community/widget/tag/bee_tag.dart';
|
|
|
|
|
|
|
|
import 'package:bot_toast/bot_toast.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
import 'package:flutter_easyrefresh/easy_refresh.dart';
|
|
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
import 'package:flutter_screenutil/flutter_screenutil.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:get/get.dart';
|
|
|
|
import 'package:velocity_x/velocity_x.dart';
|
|
|
|
import 'package:velocity_x/velocity_x.dart';
|
|
|
@ -23,15 +27,19 @@ class MyHousePage extends StatefulWidget {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class _MyHousePageState extends State<MyHousePage> {
|
|
|
|
class _MyHousePageState extends State<MyHousePage> {
|
|
|
|
|
|
|
|
EasyRefreshController _refreshController = EasyRefreshController();
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
void initState() {
|
|
|
|
Future.delayed(Duration(milliseconds: 0), () async {
|
|
|
|
|
|
|
|
await UserTool.userProvider.updateMyHouseInfo();
|
|
|
|
|
|
|
|
setState(() {});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
super.initState();
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
|
|
|
void dispose() {
|
|
|
|
|
|
|
|
_refreshController.dispose();
|
|
|
|
|
|
|
|
super.dispose();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return BeeScaffold(
|
|
|
|
return BeeScaffold(
|
|
|
@ -46,7 +54,15 @@ class _MyHousePageState extends State<MyHousePage> {
|
|
|
|
body: SafeArea(
|
|
|
|
body: SafeArea(
|
|
|
|
child: UserTool.userProvider.myHouses.isEmpty
|
|
|
|
child: UserTool.userProvider.myHouses.isEmpty
|
|
|
|
? HouseEmptyWidget()
|
|
|
|
? HouseEmptyWidget()
|
|
|
|
: ListView(
|
|
|
|
: EasyRefresh(
|
|
|
|
|
|
|
|
controller: _refreshController,
|
|
|
|
|
|
|
|
firstRefresh: true,
|
|
|
|
|
|
|
|
header: MaterialHeader(),
|
|
|
|
|
|
|
|
onRefresh: () async {
|
|
|
|
|
|
|
|
await UserTool.userProvider.updateMyHouseInfo();
|
|
|
|
|
|
|
|
setState(() {});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
child: ListView(
|
|
|
|
padding:
|
|
|
|
padding:
|
|
|
|
EdgeInsets.symmetric(horizontal: 32.w, vertical: 24.w),
|
|
|
|
EdgeInsets.symmetric(horizontal: 32.w, vertical: 24.w),
|
|
|
|
children: <Widget>[
|
|
|
|
children: <Widget>[
|
|
|
@ -54,6 +70,7 @@ class _MyHousePageState extends State<MyHousePage> {
|
|
|
|
.map((e) => _houseCard(e))
|
|
|
|
.map((e) => _houseCard(e))
|
|
|
|
.toList()
|
|
|
|
.toList()
|
|
|
|
].sepWidget(separate: 24.w.heightBox),
|
|
|
|
].sepWidget(separate: 24.w.heightBox),
|
|
|
|
|
|
|
|
),
|
|
|
|
)),
|
|
|
|
)),
|
|
|
|
bottomNavi: Padding(
|
|
|
|
bottomNavi: Padding(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 32.w),
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 32.w),
|
|
|
@ -74,11 +91,25 @@ class _MyHousePageState extends State<MyHousePage> {
|
|
|
|
Widget _houseCard(MyHouseModel model) {
|
|
|
|
Widget _houseCard(MyHouseModel model) {
|
|
|
|
return Stack(
|
|
|
|
return Stack(
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
GestureDetector(
|
|
|
|
|
|
|
|
onTap: () async {
|
|
|
|
|
|
|
|
var base = await NetUtil().get(
|
|
|
|
|
|
|
|
SAASAPI.profile.house.switchDefaultEstate,
|
|
|
|
|
|
|
|
params: {'estateId': model.isDefault});
|
|
|
|
|
|
|
|
if (base.success) {
|
|
|
|
|
|
|
|
await UserTool.userProvider.updateMyHouseInfo();
|
|
|
|
|
|
|
|
_refreshController.callRefresh();
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
BotToast.showText(text: '切换默认房屋失败');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
child: Material(
|
|
|
|
|
|
|
|
child: Container(
|
|
|
|
width: 686.w,
|
|
|
|
width: 686.w,
|
|
|
|
padding: EdgeInsets.all(24.w),
|
|
|
|
padding: EdgeInsets.all(24.w),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Colors.white, borderRadius: BorderRadius.circular(8.w)),
|
|
|
|
color: Colors.white,
|
|
|
|
|
|
|
|
borderRadius: BorderRadius.circular(8.w)),
|
|
|
|
child: Column(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
children: [
|
|
|
|
Row(
|
|
|
|
Row(
|
|
|
@ -127,6 +158,8 @@ class _MyHousePageState extends State<MyHousePage> {
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
if (model.isDefault == 1)
|
|
|
|
if (model.isDefault == 1)
|
|
|
|
Positioned(
|
|
|
|
Positioned(
|
|
|
|
top: 0,
|
|
|
|
top: 0,
|
|
|
|