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

@ -605,6 +605,10 @@ class _EventDetailPageState extends State<EventDetailPage> {
minWidth: 120.w, minWidth: 120.w,
height: 55.w, height: 55.w,
onPressed: () async { onPressed: () async {
if (_textEditingController.text.trim().isEmptyOrNull) {
BotToast.showText(text: '请填写内容');
return;
}else{
var res = await NetUtil() var res = await NetUtil()
.post(SAASAPI.community.commentInsert, params: params); .post(SAASAPI.community.commentInsert, params: params);
if (res.success) { if (res.success) {
@ -620,6 +624,7 @@ class _EventDetailPageState extends State<EventDetailPage> {
BotToast.showText(text: res.msg); BotToast.showText(text: res.msg);
} }
FocusScope.of(context).requestFocus(FocusNode()); FocusScope.of(context).requestFocus(FocusNode());
}
}, },
child: Text( child: Text(
'发布', '发布',

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

Loading…
Cancel
Save