After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 8.0 KiB |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 15 KiB |
After Width: | Height: | Size: 21 KiB |
After Width: | Height: | Size: 4.4 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 4.2 KiB |
@ -0,0 +1,634 @@
|
||||
import 'package:chewie/chewie.dart'; |
||||
import 'package:dio/dio.dart'; |
||||
import 'package:flutter/cupertino.dart'; |
||||
import 'package:flutter/material.dart'; |
||||
import 'package:flutter_easyloading/flutter_easyloading.dart'; |
||||
import 'package:flutter_smart_dialog/flutter_smart_dialog.dart'; |
||||
import 'package:huixiang/generated/l10n.dart'; |
||||
import 'package:huixiang/retrofit/data/base_data.dart'; |
||||
import 'package:huixiang/retrofit/data/chapter.dart'; |
||||
import 'package:huixiang/retrofit/data/course_details.dart'; |
||||
import 'package:huixiang/retrofit/data/member_comment_list.dart'; |
||||
import 'package:huixiang/retrofit/data/page.dart'; |
||||
import 'package:huixiang/retrofit/retrofit_api.dart'; |
||||
import 'package:huixiang/utils/font_weight.dart'; |
||||
import 'package:huixiang/view_widget/custom_image.dart'; |
||||
import 'package:chewie/src/chewie_progress_colors.dart' as chewie; |
||||
import 'package:huixiang/view_widget/tips_dialog.dart'; |
||||
import 'package:huixiang/web/web_view/comment_list.dart'; |
||||
import 'package:huixiang/web/web_view/input_comment.dart'; |
||||
import 'package:shared_preferences/shared_preferences.dart'; |
||||
import 'package:video_player/video_player.dart'; |
||||
import 'package:flutter_screenutil/flutter_screenutil.dart'; |
||||
|
||||
class ClassDetails extends StatefulWidget { |
||||
final Map<String, dynamic> arguments; |
||||
|
||||
ClassDetails({this.arguments}); |
||||
@override |
||||
State<StatefulWidget> createState() { |
||||
return _ClassDetails(); |
||||
} |
||||
} |
||||
|
||||
class _ClassDetails extends State<ClassDetails> with WidgetsBindingObserver{ |
||||
VideoPlayerController videoPlayerController; |
||||
Chewie chewies; |
||||
ChewieController chewieAudioController; |
||||
ApiService apiService; |
||||
final GlobalKey commentKey = GlobalKey(); |
||||
final ScrollController scrollController = ScrollController(); |
||||
bool isKeyBoardShow = false; |
||||
var commentFocus = FocusNode(); |
||||
String parenId = "0"; |
||||
String hintText = S.current.liuxianinjingcaidepinglunba; |
||||
List<MemberCommentList> memberList = []; |
||||
final GlobalKey inputKey = GlobalKey(); |
||||
final TextEditingController commentTextController = TextEditingController(); |
||||
int commentTotal = 0; |
||||
double commentHeight = 60.h; |
||||
CourseDetails course; |
||||
List<Chapter> chapterList = []; |
||||
bool isShowImg = true; |
||||
int chapterIndex = 0; |
||||
|
||||
@override |
||||
void initState() { |
||||
super.initState(); |
||||
WidgetsBinding.instance.addObserver(this); |
||||
courseDetails(widget.arguments["id"]); |
||||
queryChapterList(widget.arguments["id"]); |
||||
} |
||||
|
||||
///课程章节列表 |
||||
queryChapterList(courseId) async { |
||||
if (apiService == null) { |
||||
SharedPreferences value = await SharedPreferences.getInstance(); |
||||
apiService = ApiService( |
||||
Dio(), |
||||
context: context, |
||||
token: value.getString("token"), |
||||
); |
||||
} |
||||
BaseData<List<Chapter>> baseData = await apiService.catalogList(courseId).catchError((onError) {}); |
||||
if (baseData != null && baseData.isSuccess) { |
||||
setState(() { |
||||
chapterList.clear(); |
||||
chapterList.addAll(baseData.data); |
||||
chapterIndex = 0; |
||||
initVideo(chapterList[chapterIndex].content.fileUrl); |
||||
}); |
||||
|
||||
} |
||||
EasyLoading.dismiss(); |
||||
} |
||||
|
||||
///课程详情 |
||||
courseDetails(id) async { |
||||
if (apiService == null) { |
||||
SharedPreferences value = await SharedPreferences.getInstance(); |
||||
apiService = ApiService( |
||||
Dio(), |
||||
context: context, |
||||
token: value.getString("token"), |
||||
); |
||||
} |
||||
BaseData<CourseDetails> baseData = await apiService.course(id).catchError((error) {}); |
||||
if (baseData != null && baseData.isSuccess) { |
||||
setState(() { |
||||
course = baseData.data; |
||||
}); |
||||
} |
||||
} |
||||
|
||||
|
||||
@override |
||||
void dispose() { |
||||
/** |
||||
* 页面销毁时,视频播放器也销毁 |
||||
*/ |
||||
|
||||
if (chewieAudioController != null) { |
||||
chewieAudioController.pause(); |
||||
chewieAudioController.dispose(); |
||||
chewieAudioController = null; |
||||
} |
||||
if (videoPlayerController != null) { |
||||
videoPlayerController.pause(); |
||||
videoPlayerController.dispose(); |
||||
} |
||||
super.dispose(); |
||||
} |
||||
|
||||
@override |
||||
void didChangeMetrics() { |
||||
WidgetsBinding.instance.addPostFrameCallback((_) { |
||||
if (!mounted) return; |
||||
if (MediaQuery |
||||
.of(context) |
||||
.viewInsets |
||||
.bottom == 0) { |
||||
if (isKeyBoardShow) { |
||||
FocusScope.of(context).requestFocus(FocusNode()); |
||||
if (mounted) |
||||
setState(() { |
||||
hintText = S.current.liuxianinjingcaidepinglunba; |
||||
isKeyBoardShow = false; |
||||
}); |
||||
} |
||||
} else { |
||||
if (mounted) |
||||
setState(() { |
||||
isKeyBoardShow = true; |
||||
}); |
||||
} |
||||
}); |
||||
} |
||||
|
||||
@override |
||||
Widget build(BuildContext context) { |
||||
return Scaffold( |
||||
body: Container( |
||||
child: SingleChildScrollView( |
||||
physics: BouncingScrollPhysics(), |
||||
child: Column( |
||||
children: [ |
||||
Stack( |
||||
children: [ |
||||
videoWidget( |
||||
MediaQuery.of(context).size.width, |
||||
videoPlayerController != null |
||||
? (MediaQuery.of(context).size.width) / |
||||
videoPlayerController.value.aspectRatio |
||||
: MediaQuery.of(context).size.width / 2, |
||||
chapterList.length>chapterIndex?chapterList[chapterIndex].content.coverImg:"", |
||||
), |
||||
Container( |
||||
margin: EdgeInsets.only(top: 40.h, left: 16.w, right: 16.w), |
||||
decoration: BoxDecoration( |
||||
color: Colors.transparent, |
||||
), |
||||
child: Row( |
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
||||
crossAxisAlignment: CrossAxisAlignment.center, |
||||
children: [ |
||||
GestureDetector( |
||||
child: Icon( |
||||
Icons.arrow_back_ios, |
||||
color: Colors.white, |
||||
size: 24, |
||||
), |
||||
onTap: () { |
||||
Navigator.of(context).pop(); |
||||
}, |
||||
), |
||||
], |
||||
), |
||||
), |
||||
], |
||||
), |
||||
Container( |
||||
height: 123, |
||||
margin: EdgeInsets.only(bottom: 16.h), |
||||
padding: EdgeInsets.only(left: 16,top: 16,right: 10), |
||||
decoration: BoxDecoration( |
||||
color: Colors.white, |
||||
boxShadow: [ |
||||
BoxShadow( |
||||
color: Colors.black.withAlpha(12), |
||||
offset: Offset(0, 2), |
||||
blurRadius: 14, |
||||
spreadRadius: 0, |
||||
) |
||||
], |
||||
), |
||||
child: Column( |
||||
mainAxisAlignment: MainAxisAlignment.start, |
||||
crossAxisAlignment: CrossAxisAlignment.start, |
||||
children: [ |
||||
Row( |
||||
children: [ |
||||
Container( |
||||
height: 22.h, |
||||
width: 40.w, |
||||
alignment: Alignment.center, |
||||
decoration: BoxDecoration( |
||||
borderRadius: BorderRadius.circular(2), |
||||
border: Border.all( |
||||
width: 1, |
||||
color: Color(0xFFFF7A1A), |
||||
style: BorderStyle.solid, |
||||
), |
||||
), |
||||
child: Text( |
||||
( course?.tags != null && course.tags.length > 0 )?course.tags[0] : "", |
||||
style: TextStyle( |
||||
fontSize: 14.sp, |
||||
fontWeight: MyFontWeight.medium, |
||||
color: Color(0xFFFF7A1A), |
||||
), |
||||
), |
||||
), |
||||
SizedBox( |
||||
width: 6.w, |
||||
), |
||||
Expanded( |
||||
child: Text( |
||||
course != null ?course.subject:"", |
||||
overflow: TextOverflow.ellipsis, |
||||
maxLines: 2, |
||||
style: TextStyle( |
||||
fontSize: 16.sp, |
||||
fontWeight: MyFontWeight.semi_bold, |
||||
color: Color(0xFF1A1A1A), |
||||
), |
||||
), |
||||
flex: 1, |
||||
) |
||||
], |
||||
), |
||||
SizedBox( |
||||
height:10.h, |
||||
), |
||||
Padding(padding: EdgeInsets.only(right: 16), |
||||
child: Row( |
||||
children: [ |
||||
Expanded( |
||||
child: Text( |
||||
"讲师:${course !=null ? course.author.name :""}", |
||||
overflow: TextOverflow.ellipsis, |
||||
maxLines: 2, |
||||
style: TextStyle( |
||||
fontSize: 12.sp, |
||||
fontWeight: MyFontWeight.regular, |
||||
color: Colors.black, |
||||
), |
||||
)), |
||||
Text( |
||||
"播放次数", |
||||
overflow: TextOverflow.ellipsis, |
||||
maxLines: 2, |
||||
style: TextStyle( |
||||
fontSize: 12.sp, |
||||
fontWeight: MyFontWeight.regular, |
||||
color: Color(0xFF808080), |
||||
), |
||||
), |
||||
SizedBox( |
||||
width:4, |
||||
), |
||||
Text( |
||||
course != null ? course.viewers.toString() :"", |
||||
overflow: TextOverflow.ellipsis, |
||||
maxLines: 2, |
||||
style: TextStyle( |
||||
fontSize: 12.sp, |
||||
fontWeight: MyFontWeight.regular, |
||||
color: Color(0xFF808080), |
||||
), |
||||
), |
||||
], |
||||
),), |
||||
SizedBox( |
||||
height:10.h, |
||||
), |
||||
Text( |
||||
course != null ?course.introduce:"", |
||||
overflow: TextOverflow.ellipsis, |
||||
maxLines: 2, |
||||
style: TextStyle( |
||||
fontSize: 12.sp, |
||||
fontWeight: MyFontWeight.regular, |
||||
color: Colors.black, |
||||
), |
||||
), |
||||
], |
||||
), |
||||
), |
||||
anthology(), |
||||
CommentList( |
||||
commentKey, |
||||
course?.likes ?? course?.likes?? 0, |
||||
course?.id ?? course?.id ??"", |
||||
isKeyBoardShow, |
||||
_reply, |
||||
_delCommentTips, |
||||
12.sp, |
||||
), |
||||
if (memberList == null || memberList.length == 0) |
||||
Container( |
||||
width: double.infinity, |
||||
alignment: Alignment.topCenter, |
||||
margin: EdgeInsets.only(top: 40), |
||||
padding: EdgeInsets.all(22.h), |
||||
child: Text( |
||||
S |
||||
.of(context) |
||||
.zanwupinglun, |
||||
style: TextStyle( |
||||
fontSize: 12, |
||||
fontWeight: FontWeight.bold, |
||||
color: Color(0xFFA0A0A0), |
||||
), |
||||
), |
||||
), |
||||
/// 富文本评论的输入框 |
||||
InputComment( |
||||
inputKey, |
||||
hintText, |
||||
isKeyBoardShow, |
||||
commentFocus, |
||||
commentTextController, |
||||
_toComment, |
||||
_queryMemberComment, |
||||
_queryInformationLikes, |
||||
isLike: false, |
||||
), |
||||
], |
||||
), |
||||
), |
||||
), |
||||
); |
||||
} |
||||
|
||||
initVideo(videoUrl) async { |
||||
videoPlayerController = VideoPlayerController.network( |
||||
videoUrl, |
||||
)..initialize().then((value) { |
||||
chewieAudioController = ChewieController( |
||||
videoPlayerController: videoPlayerController, |
||||
aspectRatio: videoPlayerController.value.aspectRatio, |
||||
//宽高比 |
||||
autoPlay: false, |
||||
//自动播放 |
||||
looping: false, |
||||
//循环播放 |
||||
allowFullScreen: true, |
||||
// 拖动条样式颜色 |
||||
materialProgressColors: chewie.ChewieProgressColors( |
||||
playedColor: Colors.white, |
||||
handleColor: Colors.white, |
||||
backgroundColor: Colors.grey, |
||||
bufferedColor: Colors.transparent, |
||||
), |
||||
autoInitialize: true, |
||||
); |
||||
chewieAudioController.addListener(_fullScreenListener); |
||||
if (mounted) setState(() {}); |
||||
}); |
||||
} |
||||
|
||||
Future<void> _fullScreenListener() async { |
||||
if (!chewieAudioController.isFullScreen) { |
||||
Future.delayed(Duration(seconds: 1), () { |
||||
}); |
||||
} |
||||
} |
||||
|
||||
Widget videoWidget(double width, double height, src) { |
||||
print("src : $src"); |
||||
return MediaQuery( |
||||
data: MediaQuery.of(context).copyWith( |
||||
textScaleFactor: 0.9, |
||||
), |
||||
child: !isShowImg |
||||
? (chewieAudioController != null |
||||
? Container( |
||||
width: width, |
||||
height: height, |
||||
child: chewies = Chewie( |
||||
controller: chewieAudioController, |
||||
), |
||||
) |
||||
: Container( |
||||
width: width, |
||||
height: height, |
||||
)) |
||||
: GestureDetector( |
||||
onTap: (){ |
||||
setState(() { |
||||
isShowImg = false; |
||||
}); |
||||
}, |
||||
child: Container( |
||||
width: width, |
||||
height: width / 7 * 5, |
||||
color: Colors.black, |
||||
child: Stack( |
||||
children: [ |
||||
Center( |
||||
child: MImage( |
||||
src, |
||||
fit: BoxFit.cover, |
||||
errorSrc: "assets/image/default_2_1.png", |
||||
fadeSrc: "assets/image/default_2_1.png", |
||||
), |
||||
), |
||||
Center( |
||||
child: Icon( |
||||
Icons.play_circle_outline, |
||||
color: Colors.white, |
||||
size: 60, |
||||
), |
||||
), |
||||
], |
||||
), |
||||
), |
||||
), |
||||
); |
||||
} |
||||
|
||||
Widget anthology() { |
||||
return Container( |
||||
color: Colors.white, |
||||
margin: EdgeInsets.only(bottom: 16), |
||||
padding: EdgeInsets.all(16), |
||||
child: Column( |
||||
children: [ |
||||
Row( |
||||
crossAxisAlignment: CrossAxisAlignment.start, |
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween, |
||||
children: [ |
||||
Text( |
||||
"选集", |
||||
style: TextStyle( |
||||
fontSize: 15.sp, |
||||
fontWeight: MyFontWeight.medium, |
||||
color: Color(0xFF1A1A1A), |
||||
), |
||||
), |
||||
Text( |
||||
"共${chapterList.length}集", |
||||
style: TextStyle( |
||||
fontSize: 16.sp, |
||||
fontWeight: MyFontWeight.regular, |
||||
color: Color(0xFF1A1A1A), |
||||
), |
||||
), |
||||
], |
||||
), |
||||
Container( |
||||
height: 70.h, |
||||
margin: EdgeInsets.only(top:10), |
||||
child: ListView.builder( |
||||
scrollDirection: Axis.horizontal, |
||||
physics: BouncingScrollPhysics(), |
||||
itemCount:chapterList.length, |
||||
itemBuilder: (context, position) { |
||||
return GestureDetector( |
||||
onTap: () { |
||||
setState(() { |
||||
chapterIndex = position; |
||||
isShowImg = true; |
||||
initVideo(chapterList[position].content.fileUrl); |
||||
}); |
||||
}, |
||||
child: classSelectItem(chapterList[position],position), |
||||
); |
||||
}, |
||||
), |
||||
), |
||||
], |
||||
), |
||||
); |
||||
} |
||||
|
||||
Widget classSelectItem(Chapter chapterList,position) { |
||||
return Container( |
||||
width: 106.w, |
||||
alignment: Alignment.center, |
||||
margin: EdgeInsets.symmetric( |
||||
horizontal: 6.w, |
||||
vertical: 3, |
||||
), |
||||
padding: EdgeInsets.all(8), |
||||
decoration: BoxDecoration( |
||||
borderRadius: BorderRadius.circular(4), |
||||
color: position==chapterIndex ? Color(0xFF32A060): Color(0xFFE5E5E5), |
||||
), |
||||
child: Text( |
||||
chapterList?.name ?? chapterList.name ?? "", |
||||
style: TextStyle( |
||||
fontSize: 12.sp, |
||||
fontWeight: MyFontWeight.regular, |
||||
color: position == chapterIndex ? Colors.white :Color(0xFF7C7C7C), |
||||
), |
||||
), |
||||
); |
||||
} |
||||
|
||||
contentHeight() { |
||||
double contentHeight = MediaQuery |
||||
.of(context) |
||||
.size |
||||
.height - |
||||
kToolbarHeight - |
||||
MediaQuery |
||||
.of(context) |
||||
.padding |
||||
.top - |
||||
160.h; |
||||
if ((contentHeight - 60.h) > (128.h * memberList.length)) { |
||||
commentHeight = contentHeight - (128.h * memberList.length); |
||||
} |
||||
} |
||||
|
||||
///给文章/活动点赞 |
||||
_queryInformationLikes() async { |
||||
BaseData baseData = await apiService.informationLikes("1455102859841372160"); |
||||
if (baseData != null && baseData.isSuccess) { |
||||
commentKey.currentState.setState(() {}); |
||||
setState(() { |
||||
// if (comunity.selfLike ?? false) |
||||
// comunity.likes -= 1; |
||||
// else |
||||
// comunity.likes += 1; |
||||
// comunity.selfLike = !comunity.selfLike ?? false; |
||||
}); |
||||
} else { |
||||
// SmartDialog.showToast(baseData.msg, alignment: Alignment.center); |
||||
} |
||||
} |
||||
|
||||
///发布评论 |
||||
_queryMemberComment(String content) async { |
||||
BaseData baseData = await apiService.memberComment({ |
||||
"content": content, |
||||
"parentId": parenId, |
||||
"relationalId":course.id, |
||||
"relationalType": 1 |
||||
}).catchError((error) {}); |
||||
if (baseData != null && baseData.isSuccess) { |
||||
CommentListState state = commentKey.currentState; |
||||
state.queryMemberCommentList(); |
||||
commentTextController.text = ""; |
||||
FocusScope.of(context).unfocus(); |
||||
_queryMemberCommentList(); |
||||
} |
||||
} |
||||
|
||||
///评论列表 |
||||
_queryMemberCommentList() async { |
||||
SharedPreferences sharedPreferences = await SharedPreferences.getInstance(); |
||||
if (apiService == null) |
||||
apiService = ApiService( |
||||
Dio(), |
||||
context: context, |
||||
token: sharedPreferences.getString("token"), |
||||
showLoading: false, |
||||
); |
||||
BaseData<PageInfo<MemberCommentList>> baseData = |
||||
await apiService.memberCommentList({ |
||||
"pageNum": 1, |
||||
"pageSize": 100, |
||||
"relationalId":course.id, |
||||
"relationalType": 1, |
||||
}).catchError((error) {}); |
||||
if (baseData != null && baseData.isSuccess) { |
||||
commentTotal = baseData.data.size; |
||||
memberList = baseData.data.list; |
||||
contentHeight(); |
||||
if (mounted) setState(() {}); |
||||
} |
||||
} |
||||
|
||||
///滑动到评论列表 |
||||
_toComment() { |
||||
if (commentKey.currentContext == null) return; |
||||
RenderBox firstRenderBox = commentKey.currentContext.findRenderObject(); |
||||
Offset first = firstRenderBox.localToGlobal(Offset.zero); |
||||
scrollController.animateTo( |
||||
first.dy + |
||||
scrollController.offset - |
||||
(kToolbarHeight + MediaQuery |
||||
.of(context) |
||||
.padding |
||||
.top), |
||||
duration: Duration(milliseconds: 300), |
||||
curve: Curves.easeIn, |
||||
); |
||||
} |
||||
|
||||
///评论 回复 |
||||
_reply(memberComment) { |
||||
FocusScope.of(context).requestFocus(commentFocus); |
||||
parenId = memberComment.id; |
||||
hintText = S.of(context).huifu_("${memberComment.username}"); |
||||
} |
||||
|
||||
///删除评论 |
||||
delComment(memberComment) async { |
||||
BaseData baseData = await apiService.delComment(memberComment.id); |
||||
if (baseData != null && baseData.isSuccess) { |
||||
CommentListState state = commentKey.currentState; |
||||
state.queryMemberCommentList(); |
||||
} |
||||
} |
||||
|
||||
///删除评论的提示 |
||||
_delCommentTips(memberComment) { |
||||
SmartDialog.show(widget: Tips(() { |
||||
delComment(memberComment); |
||||
})); |
||||
} |
||||
} |
@ -0,0 +1,158 @@
|
||||
import 'package:dio/dio.dart'; |
||||
import 'package:flutter/cupertino.dart'; |
||||
import 'package:flutter/material.dart'; |
||||
import 'package:huixiang/generated/l10n.dart'; |
||||
import 'package:huixiang/retrofit/data/activity.dart'; |
||||
import 'package:huixiang/retrofit/data/base_data.dart'; |
||||
import 'package:huixiang/retrofit/data/page.dart'; |
||||
import 'package:huixiang/retrofit/retrofit_api.dart'; |
||||
import 'package:huixiang/utils/font_weight.dart'; |
||||
import 'package:huixiang/view_widget/item_title.dart'; |
||||
import 'package:flutter_screenutil/flutter_screenutil.dart'; |
||||
import 'package:shared_preferences/shared_preferences.dart'; |
||||
|
||||
class ShortcutOperation extends StatefulWidget { |
||||
@override |
||||
State<StatefulWidget> createState() { |
||||
return _ShortcutOperation(); |
||||
} |
||||
} |
||||
|
||||
class _ShortcutOperation extends State<ShortcutOperation> { |
||||
ApiService apiService; |
||||
|
||||
@override |
||||
void initState() { |
||||
super.initState(); |
||||
} |
||||
|
||||
|
||||
@override |
||||
Widget build(BuildContext context) { |
||||
return Container( |
||||
height: 150.h, |
||||
margin: EdgeInsets.only(bottom:15), |
||||
child: Row( |
||||
crossAxisAlignment: CrossAxisAlignment.center, |
||||
mainAxisAlignment: MainAxisAlignment.center, |
||||
children: [ |
||||
GestureDetector( |
||||
onTap: (){ |
||||
|
||||
}, |
||||
child: Container( |
||||
width: 106, |
||||
color: Colors.white, |
||||
margin: EdgeInsets.only(left: 15,right: 15), |
||||
padding: EdgeInsets.only(top: 8,bottom: 8), |
||||
child: Column( |
||||
children: [ |
||||
Text( |
||||
"现在下单", |
||||
style: TextStyle( |
||||
fontWeight: MyFontWeight.semi_bold, |
||||
fontSize: 15.sp, |
||||
color: Colors.black, |
||||
), |
||||
), |
||||
SizedBox(height: 5), |
||||
Text( |
||||
"美味等你来!", |
||||
style: TextStyle( |
||||
fontWeight: MyFontWeight.regular, |
||||
fontSize: 12.sp, |
||||
color: Colors.black, |
||||
), |
||||
), |
||||
SizedBox(height: 20), |
||||
Image.asset( |
||||
"assets/image/home_order.png", |
||||
width:70, |
||||
height:70, |
||||
), |
||||
], |
||||
), |
||||
), |
||||
), |
||||
GestureDetector( |
||||
onTap: (){ |
||||
|
||||
}, |
||||
child: Container( |
||||
width: 106, |
||||
color: Colors.white, |
||||
margin: EdgeInsets.only(left: 15,right: 15), |
||||
padding: EdgeInsets.only(top: 8,bottom: 8), |
||||
child: Column( |
||||
children: [ |
||||
Text( |
||||
"平台储值", |
||||
style: TextStyle( |
||||
fontWeight: MyFontWeight.semi_bold, |
||||
fontSize: 15.sp, |
||||
color: Colors.black, |
||||
), |
||||
), |
||||
SizedBox(height: 5), |
||||
Text( |
||||
"充值送会员!", |
||||
style: TextStyle( |
||||
fontWeight: MyFontWeight.regular, |
||||
fontSize: 12.sp, |
||||
color: Colors.black, |
||||
), |
||||
), |
||||
SizedBox(height: 20), |
||||
Image.asset( |
||||
"assets/image/home_recharge.png", |
||||
width:70, |
||||
height:70, |
||||
), |
||||
], |
||||
), |
||||
), |
||||
), |
||||
GestureDetector( |
||||
onTap: (){ |
||||
Navigator.of(context).pushNamed('/router/roll_center_page'); |
||||
}, |
||||
child:Container( |
||||
width: 106, |
||||
color: Colors.white, |
||||
margin: EdgeInsets.only(left: 15,right: 15), |
||||
padding: EdgeInsets.only(top: 8,bottom: 8), |
||||
child: Column( |
||||
children: [ |
||||
Text( |
||||
"天天有劵", |
||||
style: TextStyle( |
||||
fontWeight: MyFontWeight.semi_bold, |
||||
fontSize: 15.sp, |
||||
color: Colors.black, |
||||
), |
||||
), |
||||
SizedBox(height: 5), |
||||
Text( |
||||
"来领超值好劵!", |
||||
style: TextStyle( |
||||
fontWeight: MyFontWeight.regular, |
||||
fontSize: 12.sp, |
||||
color: Colors.black, |
||||
), |
||||
), |
||||
SizedBox(height: 20), |
||||
Image.asset( |
||||
"assets/image/home_coupon.png", |
||||
width:70, |
||||
height:70, |
||||
), |
||||
], |
||||
), |
||||
), |
||||
), |
||||
], |
||||
), |
||||
); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,136 @@
|
||||
/// id : "1452530820865589248" |
||||
/// createTime : "2021-10-25 15:01:49" |
||||
/// createUser : "1" |
||||
/// updateTime : "2021-11-02 17:09:56" |
||||
/// updateUser : "1" |
||||
/// courseId : "1452472611438067712" |
||||
/// name : "111" |
||||
/// content : {"coverImg":"https://pos.upload.gznl.top/0000/2021/11/3e014154-57cc-441e-9d02-aa53975979f5.png","remark":"11111111","fileUrl":"https://pos.upload.gznl.top/0000/2021/11/d87dd996-e269-46eb-b7ef-f8ceddfabef2.mp4"} |
||||
/// sort : 0 |
||||
/// isDelete : 0 |
||||
|
||||
class Chapter { |
||||
Chapter({ |
||||
String id, |
||||
String createTime, |
||||
String createUser, |
||||
String updateTime, |
||||
String updateUser, |
||||
String courseId, |
||||
String name, |
||||
Content content, |
||||
int sort, |
||||
int isDelete,}){ |
||||
_id = id; |
||||
_createTime = createTime; |
||||
_createUser = createUser; |
||||
_updateTime = updateTime; |
||||
_updateUser = updateUser; |
||||
_courseId = courseId; |
||||
_name = name; |
||||
_content = content; |
||||
_sort = sort; |
||||
_isDelete = isDelete; |
||||
} |
||||
|
||||
Chapter.fromJson(dynamic json) { |
||||
_id = json['id']; |
||||
_createTime = json['createTime']; |
||||
_createUser = json['createUser']; |
||||
_updateTime = json['updateTime']; |
||||
_updateUser = json['updateUser']; |
||||
_courseId = json['courseId']; |
||||
_name = json['name']; |
||||
_content = json['content'] != null ? Content.fromJson(json['content']) : null; |
||||
_sort = json['sort']; |
||||
_isDelete = json['isDelete']; |
||||
} |
||||
String _id; |
||||
String _createTime; |
||||
String _createUser; |
||||
String _updateTime; |
||||
String _updateUser; |
||||
String _courseId; |
||||
String _name; |
||||
Content _content; |
||||
int _sort; |
||||
int _isDelete; |
||||
|
||||
String get id => _id; |
||||
String get createTime => _createTime; |
||||
String get createUser => _createUser; |
||||
String get updateTime => _updateTime; |
||||
String get updateUser => _updateUser; |
||||
String get courseId => _courseId; |
||||
String get name => _name; |
||||
Content get content => _content; |
||||
int get sort => _sort; |
||||
int get isDelete => _isDelete; |
||||
|
||||
Map<String, dynamic> toJson() { |
||||
final map = <String, dynamic>{}; |
||||
map['id'] = _id; |
||||
map['createTime'] = _createTime; |
||||
map['createUser'] = _createUser; |
||||
map['updateTime'] = _updateTime; |
||||
map['updateUser'] = _updateUser; |
||||
map['courseId'] = _courseId; |
||||
map['name'] = _name; |
||||
if (_content != null) { |
||||
map['content'] = _content.toJson(); |
||||
} |
||||
map['sort'] = _sort; |
||||
map['isDelete'] = _isDelete; |
||||
return map; |
||||
} |
||||
|
||||
} |
||||
|
||||
/// coverImg : "https://pos.upload.gznl.top/0000/2021/11/3e014154-57cc-441e-9d02-aa53975979f5.png" |
||||
/// remark : "11111111" |
||||
/// fileUrl : "https://pos.upload.gznl.top/0000/2021/11/d87dd996-e269-46eb-b7ef-f8ceddfabef2.mp4" |
||||
|
||||
class Content { |
||||
Content({ |
||||
String coverImg, |
||||
String remark, |
||||
String fileUrl,}){ |
||||
_coverImg = coverImg; |
||||
_remark = remark; |
||||
_fileUrl = fileUrl; |
||||
} |
||||
|
||||
Content.fromJson(dynamic json) { |
||||
_coverImg = json['coverImg']; |
||||
_remark = json['remark']; |
||||
_fileUrl = json['fileUrl']; |
||||
} |
||||
String _coverImg; |
||||
String _remark; |
||||
String _fileUrl; |
||||
|
||||
String get coverImg => _coverImg; |
||||
String get remark => _remark; |
||||
String get fileUrl => _fileUrl; |
||||
|
||||
|
||||
set coverImg(String value) { |
||||
_coverImg = value; |
||||
} |
||||
|
||||
Map<String, dynamic> toJson() { |
||||
final map = <String, dynamic>{}; |
||||
map['coverImg'] = _coverImg; |
||||
map['remark'] = _remark; |
||||
map['fileUrl'] = _fileUrl; |
||||
return map; |
||||
} |
||||
|
||||
set remark(String value) { |
||||
_remark = value; |
||||
} |
||||
|
||||
set fileUrl(String value) { |
||||
_fileUrl = value; |
||||
} |
||||
} |
@ -0,0 +1,114 @@
|
||||
/// id : "1454326699855446016" |
||||
/// createTime : "2021-10-30 13:58:00" |
||||
/// createUser : "1" |
||||
/// updateTime : "2021-10-30 13:58:00" |
||||
/// updateUser : "1" |
||||
/// name : "111" |
||||
/// sort : 0 |
||||
/// enabled : true |
||||
/// isDelete : 0 |
||||
|
||||
class CollectClassList { |
||||
CollectClassList({ |
||||
String id, |
||||
String createTime, |
||||
String createUser, |
||||
String updateTime, |
||||
String updateUser, |
||||
String name, |
||||
int sort, |
||||
bool enabled, |
||||
int isDelete,}){ |
||||
_id = id; |
||||
_createTime = createTime; |
||||
_createUser = createUser; |
||||
_updateTime = updateTime; |
||||
_updateUser = updateUser; |
||||
_name = name; |
||||
_sort = sort; |
||||
_enabled = enabled; |
||||
_isDelete = isDelete; |
||||
} |
||||
|
||||
CollectClassList.fromJson(dynamic json) { |
||||
_id = json['id']; |
||||
_createTime = json['createTime']; |
||||
_createUser = json['createUser']; |
||||
_updateTime = json['updateTime']; |
||||
_updateUser = json['updateUser']; |
||||
_name = json['name']; |
||||
_sort = json['sort']; |
||||
_enabled = json['enabled']; |
||||
_isDelete = json['isDelete']; |
||||
} |
||||
String _id; |
||||
String _createTime; |
||||
String _createUser; |
||||
String _updateTime; |
||||
String _updateUser; |
||||
String _name; |
||||
int _sort; |
||||
bool _enabled; |
||||
int _isDelete; |
||||
|
||||
String get id => _id; |
||||
String get createTime => _createTime; |
||||
String get createUser => _createUser; |
||||
String get updateTime => _updateTime; |
||||
String get updateUser => _updateUser; |
||||
String get name => _name; |
||||
int get sort => _sort; |
||||
bool get enabled => _enabled; |
||||
int get isDelete => _isDelete; |
||||
|
||||
|
||||
set id(String value) { |
||||
_id = value; |
||||
} |
||||
|
||||
Map<String, dynamic> toJson() { |
||||
final map = <String, dynamic>{}; |
||||
map['id'] = _id; |
||||
map['createTime'] = _createTime; |
||||
map['createUser'] = _createUser; |
||||
map['updateTime'] = _updateTime; |
||||
map['updateUser'] = _updateUser; |
||||
map['name'] = _name; |
||||
map['sort'] = _sort; |
||||
map['enabled'] = _enabled; |
||||
map['isDelete'] = _isDelete; |
||||
return map; |
||||
} |
||||
|
||||
set createTime(String value) { |
||||
_createTime = value; |
||||
} |
||||
|
||||
set createUser(String value) { |
||||
_createUser = value; |
||||
} |
||||
|
||||
set updateTime(String value) { |
||||
_updateTime = value; |
||||
} |
||||
|
||||
set updateUser(String value) { |
||||
_updateUser = value; |
||||
} |
||||
|
||||
set name(String value) { |
||||
_name = value; |
||||
} |
||||
|
||||
set sort(int value) { |
||||
_sort = value; |
||||
} |
||||
|
||||
set enabled(bool value) { |
||||
_enabled = value; |
||||
} |
||||
|
||||
set isDelete(int value) { |
||||
_isDelete = value; |
||||
} |
||||
} |
@ -0,0 +1,152 @@
|
||||
/// id : "1455102859841372160" |
||||
/// createTime : "2021-11-01 17:22:11" |
||||
/// createUser : "1" |
||||
/// updateTime : "2021-11-01 17:22:11" |
||||
/// updateUser : "1" |
||||
/// categoryId : "1452472226421932032" |
||||
/// subject : "后会无期" |
||||
/// tags : ["11"] |
||||
/// coverImg : "https://pos.upload.gznl.top/0000/2021/11/d8305d15-1a39-4b08-a172-eba7f18b9968.jpg" |
||||
/// author : {"name":"1","avatar":"1"} |
||||
/// introduce : "1" |
||||
/// viewers : 0 |
||||
/// likes : 0 |
||||
/// state : true |
||||
/// isDelete : 0 |
||||
|
||||
class CourseDetails { |
||||
CourseDetails({ |
||||
String id, |
||||
String createTime, |
||||
String createUser, |
||||
String updateTime, |
||||
String updateUser, |
||||
String categoryId, |
||||
String subject, |
||||
List<String> tags, |
||||
String coverImg, |
||||
Author author, |
||||
String introduce, |
||||
int viewers, |
||||
int likes, |
||||
bool state, |
||||
int isDelete,}){ |
||||
_id = id; |
||||
_createTime = createTime; |
||||
_createUser = createUser; |
||||
_updateTime = updateTime; |
||||
_updateUser = updateUser; |
||||
_categoryId = categoryId; |
||||
_subject = subject; |
||||
_tags = tags; |
||||
_coverImg = coverImg; |
||||
_author = author; |
||||
_introduce = introduce; |
||||
_viewers = viewers; |
||||
_likes = likes; |
||||
_state = state; |
||||
_isDelete = isDelete; |
||||
} |
||||
|
||||
CourseDetails.fromJson(dynamic json) { |
||||
_id = json['id']; |
||||
_createTime = json['createTime']; |
||||
_createUser = json['createUser']; |
||||
_updateTime = json['updateTime']; |
||||
_updateUser = json['updateUser']; |
||||
_categoryId = json['categoryId']; |
||||
_subject = json['subject']; |
||||
_tags = json['tags'] != null ? json['tags'].cast<String>() : []; |
||||
_coverImg = json['coverImg']; |
||||
_author = json['author'] != null ? Author.fromJson(json['author']) : null; |
||||
_introduce = json['introduce']; |
||||
_viewers = json['viewers']; |
||||
_likes = json['likes']; |
||||
_state = json['state']; |
||||
_isDelete = json['isDelete']; |
||||
} |
||||
String _id; |
||||
String _createTime; |
||||
String _createUser; |
||||
String _updateTime; |
||||
String _updateUser; |
||||
String _categoryId; |
||||
String _subject; |
||||
List<String> _tags; |
||||
String _coverImg; |
||||
Author _author; |
||||
String _introduce; |
||||
int _viewers; |
||||
int _likes; |
||||
bool _state; |
||||
int _isDelete; |
||||
|
||||
String get id => _id; |
||||
String get createTime => _createTime; |
||||
String get createUser => _createUser; |
||||
String get updateTime => _updateTime; |
||||
String get updateUser => _updateUser; |
||||
String get categoryId => _categoryId; |
||||
String get subject => _subject; |
||||
List<String> get tags => _tags; |
||||
String get coverImg => _coverImg; |
||||
Author get author => _author; |
||||
String get introduce => _introduce; |
||||
int get viewers => _viewers; |
||||
int get likes => _likes; |
||||
bool get state => _state; |
||||
int get isDelete => _isDelete; |
||||
|
||||
Map<String, dynamic> toJson() { |
||||
final map = <String, dynamic>{}; |
||||
map['id'] = _id; |
||||
map['createTime'] = _createTime; |
||||
map['createUser'] = _createUser; |
||||
map['updateTime'] = _updateTime; |
||||
map['updateUser'] = _updateUser; |
||||
map['categoryId'] = _categoryId; |
||||
map['subject'] = _subject; |
||||
map['tags'] = _tags; |
||||
map['coverImg'] = _coverImg; |
||||
if (_author != null) { |
||||
map['author'] = _author.toJson(); |
||||
} |
||||
map['introduce'] = _introduce; |
||||
map['viewers'] = _viewers; |
||||
map['likes'] = _likes; |
||||
map['state'] = _state; |
||||
map['isDelete'] = _isDelete; |
||||
return map; |
||||
} |
||||
|
||||
} |
||||
|
||||
/// name : "1" |
||||
/// avatar : "1" |
||||
|
||||
class Author { |
||||
Author({ |
||||
String name, |
||||
String avatar,}){ |
||||
_name = name; |
||||
_avatar = avatar; |
||||
} |
||||
|
||||
Author.fromJson(dynamic json) { |
||||
_name = json['name']; |
||||
_avatar = json['avatar']; |
||||
} |
||||
String _name; |
||||
String _avatar; |
||||
|
||||
String get name => _name; |
||||
String get avatar => _avatar; |
||||
|
||||
Map<String, dynamic> toJson() { |
||||
final map = <String, dynamic>{}; |
||||
map['name'] = _name; |
||||
map['avatar'] = _avatar; |
||||
return map; |
||||
} |
||||
|
||||
} |