fix: 关注/粉丝/全部跳转异常、个人主页请求异常
This commit is contained in:
@ -91,7 +91,10 @@ class _UpPanelState extends State<UpPanel> {
|
||||
),
|
||||
Material(
|
||||
child: InkWell(
|
||||
onTap: () => {feedBack(), Get.toNamed('/follow')},
|
||||
onTap: () => {
|
||||
feedBack(),
|
||||
Get.toNamed('/follow?mid=${userInfo.mid}')
|
||||
},
|
||||
child: Container(
|
||||
height: 100,
|
||||
padding: const EdgeInsets.only(left: 10, right: 10),
|
||||
|
||||
@ -264,7 +264,8 @@ class _MinePageState extends State<MinePage> {
|
||||
),
|
||||
),
|
||||
InkWell(
|
||||
onTap: () => Get.toNamed('/follow'),
|
||||
onTap: () => Get.toNamed(
|
||||
'/follow?mid=${_mineController.userInfo.value.mid}'),
|
||||
borderRadius: StyleString.mdRadius,
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
@ -294,7 +295,8 @@ class _MinePageState extends State<MinePage> {
|
||||
),
|
||||
),
|
||||
InkWell(
|
||||
onTap: () => Get.toNamed('/fan'),
|
||||
onTap: () => Get.toNamed(
|
||||
'/fan?mid=${_mineController.userInfo.value.mid}'),
|
||||
borderRadius: StyleString.mdRadius,
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
|
||||
Reference in New Issue
Block a user