更新消息设置

This commit is contained in:
wyf
2025-12-05 17:37:01 +08:00
parent 1cc26aa46d
commit db51c42664
44 changed files with 7510 additions and 1059 deletions

View File

@@ -41,7 +41,7 @@ class _CommonMessageSettingPageState
String type = "user_message_setting";
String queryUrl = "${serviceAddress}${serviceName}${serviceApi}?type=$type";
requestWithLog(
logTitle: "查询用户消息配置",
logTitle: "查询用户消息配置11",
method: MyHttpMethod.get,
queryUrl: queryUrl,
onSuccess: (res) {
@@ -62,7 +62,7 @@ class _CommonMessageSettingPageState
data: data,
onSuccess: (res) {
requestWithLog(
logTitle: "查询用户消息配置",
logTitle: "查询用户消息配置12",
method: MyHttpMethod.get,
queryUrl: queryUrl,
onSuccess: (res) {

View File

@@ -400,7 +400,7 @@ class _MHTPeopleInfoPageState extends State<MHTPeopleInfoPage> {
() {
showHeightPickerDialog(
context,
title: "选择身高".tr,
title: "选择分数".tr,
initialHeight: int.tryParse(
peopleList[index]['height'] ??
'170') ??

View File

@@ -164,6 +164,7 @@ class AuthBindTelController extends GetControllerEx<AuthBindTelModel> {
final data = {
'phone': model.phone,
'verify': model.code,
'merge': true,
};
var response =

View File

@@ -442,6 +442,8 @@ class _UpdateUserPageState extends State<EditUserPage> {
userInfoController.model.user!.tmpHead = null;
userInfoController.model.user!.tmpNickName = null;
await userInfoController.getUserInfo();
userInfoController.model.user!.tmpNickName = userInfoController.model.user!.nick_name;
userInfoController.model.user!.tmpHead = userInfoController.model.user!.avatar;
userInfoController.updateAll();
Get.back();
}