|
|
|
@ -322,7 +322,7 @@ class _IntegralPage extends State<IntegralPage> {
|
|
|
|
|
style: TextStyle( |
|
|
|
|
color: Color(0xFF353535), |
|
|
|
|
fontSize: 14.sp, |
|
|
|
|
fontWeight: FontWeight.w500), |
|
|
|
|
fontWeight: FontWeight.w500,), |
|
|
|
|
), |
|
|
|
|
SizedBox( |
|
|
|
|
height: 10.h, |
|
|
|
@ -442,7 +442,7 @@ class _IntegralPage extends State<IntegralPage> {
|
|
|
|
|
style: TextStyle( |
|
|
|
|
fontWeight: FontWeight.bold, |
|
|
|
|
fontSize: 16.sp, |
|
|
|
|
color: Color(0xFF353535)), |
|
|
|
|
color: Color(0xFF353535),), |
|
|
|
|
), |
|
|
|
|
SizedBox( |
|
|
|
|
height: 10.h, |
|
|
|
@ -465,7 +465,7 @@ class _IntegralPage extends State<IntegralPage> {
|
|
|
|
|
mainAxisSpacing: 8.h, |
|
|
|
|
crossAxisSpacing: 18.w, |
|
|
|
|
padding: EdgeInsets.only(bottom: 32.h), |
|
|
|
|
physics: new NeverScrollableScrollPhysics(), |
|
|
|
|
physics: NeverScrollableScrollPhysics(), |
|
|
|
|
itemBuilder: (context, position) { |
|
|
|
|
return signInItem(position); |
|
|
|
|
}, |
|
|
|
@ -557,13 +557,19 @@ class _IntegralPage extends State<IntegralPage> {
|
|
|
|
|
flex: 1, |
|
|
|
|
child: InkWell( |
|
|
|
|
onTap: () { |
|
|
|
|
Navigator.of(context) |
|
|
|
|
.pushNamed('/router/mine_vip_level_page', arguments: { |
|
|
|
|
"rankLevel": rankLevel, |
|
|
|
|
"createTime": |
|
|
|
|
SharedPreferences.getInstance().then((value) { |
|
|
|
|
if (value.getString("token") != null && value.getString("token") != "") { |
|
|
|
|
Navigator.of(context) |
|
|
|
|
.pushNamed('/router/mine_vip_level_page', arguments: { |
|
|
|
|
"rankLevel": rankLevel, |
|
|
|
|
"createTime": |
|
|
|
|
(userinfo != null) ? "${userinfo.createTime}" : "", |
|
|
|
|
"points": |
|
|
|
|
"points": |
|
|
|
|
(userinfo != null) ? int.tryParse(userinfo.points) : 0, |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
child: Column( |
|
|
|
|