diff --git a/app/run.py b/app/run.py index 58c77b0..82e16b0 100644 --- a/app/run.py +++ b/app/run.py @@ -892,10 +892,13 @@ def get_user_info(): "is_active": account.is_active }) else: + # 检查是否有移动端参数 + has_mparam = bool(account.mparam) user_info_list.append({ "index": idx, "nickname": "", - "is_active": False + "is_active": False, + "has_mparam": has_mparam }) return jsonify({"success": True, "data": user_info_list}) diff --git a/app/templates/index.html b/app/templates/index.html index dd1845b..664f447 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -252,7 +252,7 @@