mod: 异常状态样式
This commit is contained in:
@ -62,7 +62,7 @@ class DynamicsController extends GetxController {
|
||||
|
||||
Future queryFollowDynamic({type = 'init'}) async {
|
||||
if (!userLogin.value) {
|
||||
return {'status': false, 'msg': '未登录'};
|
||||
return {'status': false, 'msg': '账号未登录'};
|
||||
}
|
||||
if (type == 'init') {
|
||||
dynamicsList.clear();
|
||||
@ -188,6 +188,9 @@ class DynamicsController extends GetxController {
|
||||
}
|
||||
|
||||
Future queryFollowUp({type = 'init'}) async {
|
||||
if (!userLogin.value) {
|
||||
return {'status': false, 'msg': '账号未登录'};
|
||||
}
|
||||
if (type == 'init') {
|
||||
upData = FollowUpModel().obs;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user