Compare commits
2 Commits
1c17e014a4
...
6719526cd2
| Author | SHA1 | Date |
|---|---|---|
|
|
6719526cd2 | |
|
|
0149e0761f |
Binary file not shown.
|
After Width: | Height: | Size: 1.2 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
|
|
@ -271,6 +271,18 @@ class _HomeworkCorrectionState extends ConsumerState<HomeworkCorrection>
|
|||
],
|
||||
),
|
||||
),
|
||||
|
||||
/* Row(
|
||||
children: [
|
||||
InkWell(
|
||||
onTap: (){
|
||||
|
||||
},
|
||||
child: Text('历史作业'),
|
||||
),
|
||||
],
|
||||
),*/
|
||||
|
||||
if (_tabIndex == 1)
|
||||
$CompletedJobConditionFilter(
|
||||
controller: _tabController2,
|
||||
|
|
|
|||
|
|
@ -184,7 +184,12 @@ class _JobPriorityReviewSetState extends State<JobPriorityReviewSet>
|
|||
),
|
||||
children: List.generate(levelList.length, (index) {
|
||||
JobStudentLevel item = levelList[index];
|
||||
return Container(
|
||||
return InkWell(
|
||||
onTap: (){
|
||||
RouterManager.router.navigateTo(context,
|
||||
'${RouterManager.jobPersonalDetailPath}?studentId=${item.studentId}&studentName=${Uri.encodeComponent(item.studentName)}');
|
||||
},
|
||||
child: Container(
|
||||
padding: EdgeInsets.symmetric(horizontal: 10.r),
|
||||
decoration: BoxDecoration(
|
||||
borderRadius:
|
||||
|
|
@ -218,19 +223,27 @@ class _JobPriorityReviewSetState extends State<JobPriorityReviewSet>
|
|||
width: 70.r,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.all(
|
||||
Radius.circular(20.r)),
|
||||
color: isClicking
|
||||
? Color(0xFFDCE3FF)
|
||||
: Color(0xFF6888FD),
|
||||
Radius.circular(4.r)),
|
||||
color:Color(0xFFB7FFE0),
|
||||
),
|
||||
child: Center(
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Padding(
|
||||
padding: EdgeInsets.only(left: 3.r),
|
||||
child: Image.asset('assets/images/youx_icon_active.png',width: 14.r,height: 14.r,),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.only(top: 2.r,left: 4.r),
|
||||
child: Text(
|
||||
'取消优先',
|
||||
'优先批阅',
|
||||
style: TextStyle(
|
||||
fontSize: 10.sp,
|
||||
color: Colors.white),
|
||||
color: Color(0xFF4CC793)),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
)
|
||||
: InkWell(
|
||||
|
|
@ -248,29 +261,30 @@ class _JobPriorityReviewSetState extends State<JobPriorityReviewSet>
|
|||
width: 70.r,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.all(
|
||||
Radius.circular(20.r)),
|
||||
color: isClicking
|
||||
? Color(0xFF6888FD)
|
||||
: Color(0xFFFFFFFF),
|
||||
border: Border.all(
|
||||
width: 1.r,
|
||||
color: isClicking
|
||||
? Color(0xFFFFFFFF)
|
||||
: Color(0xFF6888FD)),
|
||||
Radius.circular(4.r)),
|
||||
color: Color(0xFFE1E1E1),
|
||||
),
|
||||
child: Center(
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Padding(
|
||||
padding: EdgeInsets.only(left: 3.r),
|
||||
child: Image.asset('assets/images/youx_icon_default.png',width: 14.r,height: 14.r,),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.only(top: 2.r,left: 4.r),
|
||||
child: Text(
|
||||
'设为优先',
|
||||
'优先批阅',
|
||||
style: TextStyle(
|
||||
fontSize: 10.sp,
|
||||
color: isClicking
|
||||
? Color(0xFFFFFFFF)
|
||||
: Color(0xFF6888FD)),
|
||||
color: Color(0xFF8A9691)),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
/* SizedBox(
|
||||
width: 5.r,
|
||||
),
|
||||
InkWell(
|
||||
|
|
@ -297,16 +311,22 @@ class _JobPriorityReviewSetState extends State<JobPriorityReviewSet>
|
|||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
)*/
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
}),
|
||||
)
|
||||
: ListView.builder(
|
||||
itemBuilder: (context, index) {
|
||||
JobStudentLevel item = levelList[index];
|
||||
return Container(
|
||||
return InkWell(
|
||||
onTap: (){
|
||||
RouterManager.router.navigateTo(context,
|
||||
'${RouterManager.jobPersonalDetailPath}?studentId=${item.studentId}&studentName=${Uri.encodeComponent(item.studentName)}');
|
||||
},
|
||||
child: Container(
|
||||
padding: EdgeInsets.symmetric(
|
||||
vertical: 20.r, horizontal: 15.r),
|
||||
margin: EdgeInsets.only(bottom: 15.r),
|
||||
|
|
@ -342,19 +362,27 @@ class _JobPriorityReviewSetState extends State<JobPriorityReviewSet>
|
|||
width: 82.r,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.all(
|
||||
Radius.circular(20.r)),
|
||||
color: isClicking
|
||||
? Color(0xFFDCE3FF)
|
||||
: Color(0xFF6888FD),
|
||||
Radius.circular(4.r)),
|
||||
color:Color(0xFFB7FFE0),
|
||||
),
|
||||
child: Center(
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Padding(
|
||||
padding: EdgeInsets.only(left: 3.r),
|
||||
child: Image.asset('assets/images/youx_icon_active.png',width: 14.r,height: 14.r,),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.only(top: 2.r,left: 4.r),
|
||||
child: Text(
|
||||
'取消优先',
|
||||
'优先批阅',
|
||||
style: TextStyle(
|
||||
fontSize: 10.sp,
|
||||
color: Colors.white),
|
||||
color: Color(0xFF4CC793)),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
)
|
||||
: InkWell(
|
||||
|
|
@ -369,23 +397,30 @@ class _JobPriorityReviewSetState extends State<JobPriorityReviewSet>
|
|||
width: 82.r,
|
||||
decoration: BoxDecoration(
|
||||
borderRadius: BorderRadius.all(
|
||||
Radius.circular(20.r)),
|
||||
color: Color(0xFFFFFFFF),
|
||||
border: Border.all(
|
||||
width: 1.r,
|
||||
color: Color(0xFF6888FD)),
|
||||
Radius.circular(4.r)),
|
||||
color: Color(0xFFE1E1E1),
|
||||
),
|
||||
child: Center(
|
||||
child: Row(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Padding(
|
||||
padding: EdgeInsets.only(left: 3.r),
|
||||
child: Image.asset('assets/images/youx_icon_default.png',width: 14.r,height: 14.r,),
|
||||
),
|
||||
Padding(
|
||||
padding: EdgeInsets.only(top: 2.r,left: 4.r),
|
||||
child: Text(
|
||||
'设为优先',
|
||||
'优先批阅',
|
||||
style: TextStyle(
|
||||
fontSize: 10.sp,
|
||||
color: Color(0xFF6888FD)),
|
||||
color: Color(0xFF8A9691)),
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
SizedBox(
|
||||
/* SizedBox(
|
||||
width: 5.r,
|
||||
),
|
||||
InkWell(
|
||||
|
|
@ -412,9 +447,10 @@ class _JobPriorityReviewSetState extends State<JobPriorityReviewSet>
|
|||
),
|
||||
),
|
||||
),
|
||||
)
|
||||
)*/
|
||||
],
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
itemCount: levelList.length,
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@ class _QuickCheckPersonalState extends State<QuickCheckPersonal>
|
|||
),
|
||||
),
|
||||
SizedBox(width: 10.r,),
|
||||
Container(
|
||||
/*Container(
|
||||
width: 93.r,
|
||||
height: 28.r,
|
||||
decoration: BoxDecoration(
|
||||
|
|
@ -125,9 +125,9 @@ class _QuickCheckPersonalState extends State<QuickCheckPersonal>
|
|||
borderRadius: BorderRadius.circular(4.r),
|
||||
),
|
||||
child: Center(
|
||||
child: Text('查看原稿',style: TextStyle(fontSize: 10.r,color: Color(0xFF4CC793)),),
|
||||
),
|
||||
child: Text('原稿笔迹',style: TextStyle(fontSize: 10.r,color: Color(0xFF4CC793)),),
|
||||
),
|
||||
),*/
|
||||
],
|
||||
),
|
||||
),
|
||||
|
|
|
|||
Loading…
Reference in New Issue