pull/1/head
张萌 3 years ago
commit a223744ce3

@ -605,21 +605,26 @@ class _EventDetailPageState extends State<EventDetailPage> {
minWidth: 120.w,
height: 55.w,
onPressed: () async {
var res = await NetUtil()
.post(SAASAPI.community.commentInsert, params: params);
if (res.success) {
_textEditingController.clear();
if (_rootId == 0) {
_refreshController.callRefresh();
if (_textEditingController.text.trim().isEmptyOrNull) {
BotToast.showText(text: '请填写内容');
return;
}else{
var res = await NetUtil()
.post(SAASAPI.community.commentInsert, params: params);
if (res.success) {
_textEditingController.clear();
if (_rootId == 0) {
_refreshController.callRefresh();
} else {
await updateComments();
_focusNode.unfocus();
}
setState(() {});
} else {
await updateComments();
_focusNode.unfocus();
BotToast.showText(text: res.msg);
}
setState(() {});
} else {
BotToast.showText(text: res.msg);
FocusScope.of(context).requestFocus(FocusNode());
}
FocusScope.of(context).requestFocus(FocusNode());
},
child: Text(
'发布',

@ -224,6 +224,7 @@ class MyCommunityViewState extends State<MyCommunityView>
),
50.wb,
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
width: 552.w,

Loading…
Cancel
Save