dock interface:eventVoting/vote,

add vote dialog
hmxc
张萌 4 years ago
parent 331f5ab3a8
commit 5f1299867e

@ -151,6 +151,9 @@ class _Manager {
/// ///
String get voteDetail => '/user/eventVoting/voteDetail'; String get voteDetail => '/user/eventVoting/voteDetail';
///
String get vote => '/user/eventVoting/vote';
} }
class _Community { class _Community {

@ -1,4 +1,7 @@
// Flutter imports: // Flutter imports:
import 'package:akuCommunity/base/base_style.dart';
import 'package:akuCommunity/widget/buttons/bottom_button.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
// Package imports: // Package imports:
@ -12,6 +15,7 @@ import 'package:akuCommunity/widget/bee_divider.dart';
import 'package:akuCommunity/widget/bee_scaffold.dart'; import 'package:akuCommunity/widget/bee_scaffold.dart';
import 'package:akuCommunity/widget/buttons/bee_single_check.dart'; import 'package:akuCommunity/widget/buttons/bee_single_check.dart';
import 'package:akuCommunity/utils/headers.dart'; import 'package:akuCommunity/utils/headers.dart';
import 'package:get/get.dart';
class VotingDetailPage extends StatefulWidget { class VotingDetailPage extends StatefulWidget {
final int id; final int id;
@ -63,7 +67,7 @@ class _VotingDetailPageState extends State<VotingDetailPage> {
// } // }
// }, // },
// ), // ),
// //
// //
// //
child: GestureDetector( child: GestureDetector(
@ -102,6 +106,32 @@ class _VotingDetailPageState extends State<VotingDetailPage> {
return Container(); return Container();
} }
Widget _shouwVoteDialog() {
return CupertinoAlertDialog(
title: '投票成功'.text.black.size(32.sp).bold.isIntrinsic.make(),
actions: [
CupertinoDialogAction(
child: '取消'.text.black.size(34.sp).isIntrinsic.make(),
onPressed: () {
Get.back();
},
),
CupertinoDialogAction(
child: '查看结果'
.text
.color(kPrimaryColor)
.size(34.sp)
.bold
.isIntrinsic
.make(),
onPressed: () {
Get.back();
},
)
],
);
}
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return BeeScaffold( return BeeScaffold(
@ -163,6 +193,11 @@ class _VotingDetailPageState extends State<VotingDetailPage> {
], ],
), ),
), ),
bottomNavi: BottomButton(
onPressed: () {
Get.dialog(_shouwVoteDialog());
},
child: '投票'.text.black.size(28.sp).bold.make()),
); );
} }
} }

@ -174,4 +174,12 @@ class ManagerFunc {
showMessage: false); showMessage: false);
return VotingDetailModel.fromJson(baseModel.data); return VotingDetailModel.fromJson(baseModel.data);
} }
static Future<BaseModel> vote(int voteId, int candleId) async {
BaseModel baseModel = await NetUtil().post(API.manager.vote, params: {
'voteId': voteId,
'candidateId': candleId,
});
return baseModel;
}
} }

Loading…
Cancel
Save