默认选中年会员和查看资料的问题
This commit is contained in:
parent
9679520dd3
commit
d8cc691814
@ -790,7 +790,7 @@ class _TIMTextFieldLayoutNarrowState
|
||||
Get.bottomSheet(
|
||||
Scaffold(
|
||||
backgroundColor: Colors.transparent,
|
||||
body: Open_vip_tipPage(false),
|
||||
body: Open_vip_tipPage(true),
|
||||
),
|
||||
isScrollControlled: true,
|
||||
enableDrag: false);
|
||||
|
||||
@ -139,7 +139,7 @@ class CircleLogic extends GetxController {
|
||||
Get.bottomSheet(
|
||||
Scaffold(
|
||||
backgroundColor: Colors.transparent,
|
||||
body: Open_vip_tipPage(false),
|
||||
body: Open_vip_tipPage(true),
|
||||
),
|
||||
isScrollControlled: true,
|
||||
enableDrag: false);
|
||||
|
||||
@ -218,16 +218,20 @@ class InfoListViewState extends State<InfoListView> with AutomaticKeepAliveClien
|
||||
List<JoinUser> urlList = widget.bean.lastJoinUsers;
|
||||
List<Widget> widgets = [];
|
||||
int i = 0;
|
||||
// print(urlList);
|
||||
if(null!=urlList){
|
||||
urlList.forEach((element) {
|
||||
if(widgets.length>2){
|
||||
return;
|
||||
}
|
||||
widgets.add(Positioned(
|
||||
left: 15.sp * i,
|
||||
child: circleWidget(element.avatar,element.id.toString()),
|
||||
child: circleWidget(element.avatar??"https://qiniuyun.leyuan666.com/quanzi/avatar/default.png",element.id.toString()),
|
||||
));
|
||||
i++;
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
return ClipRRect(
|
||||
borderRadius: BorderRadius.circular(10.sp),
|
||||
@ -1173,7 +1177,7 @@ class InfoListViewState extends State<InfoListView> with AutomaticKeepAliveClien
|
||||
),
|
||||
ClipOval(
|
||||
child: Image.network(
|
||||
url,
|
||||
url??"https://qiniuyun.leyuan666.com/quanzi/avatar/default.png",
|
||||
width: (width - 1).sp,
|
||||
height: (width - 1).sp,
|
||||
fit: BoxFit.cover,
|
||||
|
||||
@ -544,7 +544,7 @@ class MinefragmentPage extends StatelessWidget {
|
||||
Get.bottomSheet(
|
||||
Scaffold(
|
||||
backgroundColor: Colors.transparent,
|
||||
body: Open_vip_tipPage(false),
|
||||
body: Open_vip_tipPage(true),
|
||||
),
|
||||
isScrollControlled: true,
|
||||
enableDrag: false);
|
||||
|
||||
@ -107,7 +107,7 @@ class PrivacyPage extends StatelessWidget {
|
||||
Get.bottomSheet(
|
||||
Scaffold(
|
||||
backgroundColor: Colors.transparent,
|
||||
body: Open_vip_tipPage(false),
|
||||
body: Open_vip_tipPage(true),
|
||||
),
|
||||
isScrollControlled: true,
|
||||
enableDrag: false);
|
||||
|
||||
@ -60,6 +60,8 @@ class UserinfoLogic extends GetxController {
|
||||
state.imaglist.clear();
|
||||
|
||||
if (userId.isEmpty) {
|
||||
isMe =true;
|
||||
update();
|
||||
fetchUserInfo(Api.getUserInfo);
|
||||
fetchMyAlbum(Api.getMyAlbum);
|
||||
} else {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user