删除房屋功能

hmxc
小赖 4 years ago
parent 9b155715eb
commit 420680a27b

@ -72,6 +72,9 @@ class _User {
/// ///
String get houseList => '/user/myHouse/list'; String get houseList => '/user/myHouse/list';
///
String get deleteHouse => '/user/myHouse/falseDelete';
} }
class _Manager { class _Manager {

@ -127,6 +127,11 @@ class HouseCard extends StatelessWidget {
style: Theme.of(context).textTheme.subtitle1, style: Theme.of(context).textTheme.subtitle1,
), ),
Spacer(), Spacer(),
Row(
children: [
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text( Text(
'身份', '身份',
style: Theme.of(context).textTheme.subtitle2.copyWith( style: Theme.of(context).textTheme.subtitle2.copyWith(
@ -137,6 +142,26 @@ class HouseCard extends StatelessWidget {
_roleName, _roleName,
style: Theme.of(context).textTheme.subtitle1, style: Theme.of(context).textTheme.subtitle1,
), ),
],
).expand(),
//TODO
// Column(
// crossAxisAlignment: CrossAxisAlignment.start,
// children: [
// Text(
// '到期时间',
// style: Theme.of(context).textTheme.subtitle2.copyWith(
// color: Color(0xFF666666),
// ),
// ),
// Text(
// _roleName,
// style: Theme.of(context).textTheme.subtitle1,
// ),
// ],
// ).expand(),
],
),
40.hb, 40.hb,
], ],
), ),

@ -1,9 +1,15 @@
import 'package:akuCommunity/constants/api.dart';
import 'package:akuCommunity/model/user/house_model.dart'; import 'package:akuCommunity/model/user/house_model.dart';
import 'package:akuCommunity/provider/app_provider.dart'; import 'package:akuCommunity/provider/app_provider.dart';
import 'package:akuCommunity/ui/profile/house/add_house_page.dart';
import 'package:akuCommunity/ui/profile/house/house_func.dart'; import 'package:akuCommunity/ui/profile/house/house_func.dart';
import 'package:akuCommunity/utils/network/net_util.dart';
import 'package:akuCommunity/widget/bee_scaffold.dart'; import 'package:akuCommunity/widget/bee_scaffold.dart';
import 'package:bot_toast/bot_toast.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_easyrefresh/easy_refresh.dart'; import 'package:flutter_easyrefresh/easy_refresh.dart';
import 'package:flutter_slidable/flutter_slidable.dart';
import 'package:get/get.dart'; import 'package:get/get.dart';
import 'package:provider/provider.dart'; import 'package:provider/provider.dart';
import 'package:akuCommunity/utils/headers.dart'; import 'package:akuCommunity/utils/headers.dart';
@ -16,6 +22,7 @@ class PickMyHousePage extends StatefulWidget {
} }
class _PickMyHousePageState extends State<PickMyHousePage> { class _PickMyHousePageState extends State<PickMyHousePage> {
EasyRefreshController _refreshController = EasyRefreshController();
_renderTitle(String title) { _renderTitle(String title) {
return SliverPadding( return SliverPadding(
padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 16.w), padding: EdgeInsets.symmetric(horizontal: 32.w, vertical: 16.w),
@ -60,6 +67,7 @@ class _PickMyHousePageState extends State<PickMyHousePage> {
title: '我的房屋', title: '我的房屋',
body: EasyRefresh( body: EasyRefresh(
header: MaterialHeader(), header: MaterialHeader(),
controller: _refreshController,
onRefresh: () async { onRefresh: () async {
final appProvider = Provider.of<AppProvider>(context, listen: false); final appProvider = Provider.of<AppProvider>(context, listen: false);
appProvider.updateHouses(await HouseFunc.houses); appProvider.updateHouses(await HouseFunc.houses);
@ -83,7 +91,10 @@ class _PickMyHousePageState extends State<PickMyHousePage> {
).material(color: Colors.white), ).material(color: Colors.white),
bottomNavi: ElevatedButton( bottomNavi: ElevatedButton(
child: Text('新增房屋'), child: Text('新增房屋'),
onPressed: () {}, onPressed: () async {
bool result = await Get.to(() => AddHousePage());
if (result == true) _refreshController.callRefresh();
},
style: ButtonStyle( style: ButtonStyle(
padding: padding:
MaterialStateProperty.all(EdgeInsets.symmetric(vertical: 26.w)), MaterialStateProperty.all(EdgeInsets.symmetric(vertical: 26.w)),
@ -98,10 +109,55 @@ class _HouseCard extends StatelessWidget {
final bool highlight; final bool highlight;
const _HouseCard({Key key, @required this.model, this.highlight = false}) const _HouseCard({Key key, @required this.model, this.highlight = false})
: super(key: key); : super(key: key);
bool get canTapSlide => model.status == 4 || model.status == 3;
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return MaterialButton( return Slidable(
actionPane: SlidableDrawerActionPane(),
actionExtentRatio: 0.2,
secondaryActions: [
SlideAction(
onTap: canTapSlide
? () async {
bool result = await Get.dialog(CupertinoAlertDialog(
title: Text('删除房屋'),
content: Text('删除房屋后,可以再次验证添加'),
actions: [
CupertinoDialogAction(
child: Text('取消'),
onPressed: () => Get.back(),
),
CupertinoDialogAction(
child: Text('确认'),
onPressed: () => Get.back(result: true),
),
],
));
if (result == true) {
final cancel = BotToast.showLoading();
await NetUtil().post(
API.user.deleteHouse,
params: {
'ids': [model.id]
},
);
cancel();
}
}
: null,
closeOnTap: canTapSlide,
child: Text(
'删除',
style: TextStyle(
color: canTapSlide ? Colors.white : Color(0xFF999999),
fontSize: 28.sp,
fontWeight: FontWeight.bold,
),
),
color: canTapSlide ? Color(0xFFFD4912) : Color(0xFFE8E8E8),
),
],
child: MaterialButton(
padding: EdgeInsets.symmetric(horizontal: 32.w), padding: EdgeInsets.symmetric(horizontal: 32.w),
height: 136.w, height: 136.w,
child: Row( child: Row(
@ -157,6 +213,7 @@ class _HouseCard extends StatelessWidget {
appProvider.setCurrentHouse(model); appProvider.setCurrentHouse(model);
Get.back(); Get.back();
}, },
),
); );
} }
} }

Loading…
Cancel
Save