Commit ce4244dd authored by 杜欣's avatar 杜欣

submit message

parent 9067fe86
...@@ -2,6 +2,7 @@ import 'package:flutter/cupertino.dart'; ...@@ -2,6 +2,7 @@ import 'package:flutter/cupertino.dart';
import 'package:flutter_screenutil/flutter_screenutil.dart'; import 'package:flutter_screenutil/flutter_screenutil.dart';
import 'package:gmalpha_flutter/Annotations/RouterCenterRestore.mark.dart'; import 'package:gmalpha_flutter/Annotations/RouterCenterRestore.mark.dart';
import 'package:gmalpha_flutter/NewMessageModel/util/message_date.dart'; import 'package:gmalpha_flutter/NewMessageModel/util/message_date.dart';
import 'package:gmalpha_flutter/commonModel/base/AppBase.dart';
import 'package:gmalpha_flutter/res/value/ALColors.dart'; import 'package:gmalpha_flutter/res/value/ALColors.dart';
...@@ -104,7 +105,13 @@ Widget getNum([int count]) { ...@@ -104,7 +105,13 @@ Widget getNum([int count]) {
} }
Widget messageList(list) { Widget messageList(list) {
var contentText = {1: '评论了你', 2: '评论了你的评论', 3: '评论了你', 4: '评论了你的评论', 5: '关注了你的问题'}; var content = {
1: {'showText': '评论了你', 'opeUrl': 'topic_detail?call_keyboard=1&open_comment=0&topic_id=${list.repliedContent.topicId}&reply_id=${list.id}'},
2: {'showText': '评论了你的评论', 'opeUrl': 'topic_detail?call_keyboard=1&open_comment=0&topic_id=${list.repliedContent.topicId}&reply_id=${list.id}'},
3: {'showText': '评论了你', 'opeUrl': 'pictorial_detail?pictorial_id=${list.repliedContent.pictorialId}&reply_id=${list.id}&show_reply=${false}'},
4: {'showText': '评论了你的评论', 'opeUrl': 'pictorial_detail?pictorial_id=${list.repliedContent.pictorialId}&reply_id=${list.id}&show_reply=${false}'},
5: {'showText': '关注了你的问题', 'opeUrl': 'pictorial_detail?pictorial_id=${list.repliedContent.pictorialId}'}
};
return Container( return Container(
padding: EdgeInsets.only(left: width, right: width), padding: EdgeInsets.only(left: width, right: width),
margin: EdgeInsets.only(bottom: ScreenUtil().setHeight(25)), margin: EdgeInsets.only(bottom: ScreenUtil().setHeight(25)),
...@@ -119,6 +126,7 @@ Widget messageList(list) { ...@@ -119,6 +126,7 @@ Widget messageList(list) {
GestureDetector( GestureDetector(
onTap: (){ onTap: (){
onClickButton('head_photo', {'business_id': list.userId.toString()}); onClickButton('head_photo', {'business_id': list.userId.toString()});
jumpToNative('message_home', {"url": 'alpha://user_detail?user_id=${list.userId}'});
}, },
child: Container( child: Container(
width: 42.0, width: 42.0,
...@@ -153,7 +161,7 @@ Widget messageList(list) { ...@@ -153,7 +161,7 @@ Widget messageList(list) {
), ),
SizedBox(width: ScreenUtil().setWidth(10)), SizedBox(width: ScreenUtil().setWidth(10)),
Text( Text(
contentText[list.repliedContent?.type], content[list.repliedContent?.type]['showText'],
style: TextStyle( style: TextStyle(
color: ALColors.Color323232, color: ALColors.Color323232,
fontSize: ScreenUtil().setSp(13) fontSize: ScreenUtil().setSp(13)
...@@ -189,6 +197,7 @@ Widget messageList(list) { ...@@ -189,6 +197,7 @@ Widget messageList(list) {
GestureDetector( GestureDetector(
onTap: () { onTap: () {
onClickButton('photo', {'business_id': list.repliedContent.id.toString()}); onClickButton('photo', {'business_id': list.repliedContent.id.toString()});
jumpToNative('message_home', {"url": 'alpha://${content[list.repliedContent?.type]['openUrl']}'});
}, },
child: Image.network( child: Image.network(
list.repliedContent.content, list.repliedContent.content,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment