From a715181089be0d31cd737a5367ffd02690b9d77f Mon Sep 17 00:00:00 2001
From: wxr <464027401@qq.com>
Date: 星期四, 12 十一月 2020 13:36:01 +0800
Subject: [PATCH] 20201112

---
 HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPageBLL.cs |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPageBLL.cs b/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPageBLL.cs
index a78bc51..3434e53 100644
--- a/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPageBLL.cs
+++ b/HDL_ON/UI/UI2/4-PersonalCenter/MemberManagement/MemberPermissionPageBLL.cs
@@ -1,7 +1,31 @@
 锘縰sing System;
+using HDL_ON.DAL.Server;
+
 namespace HDL_ON.UI
 {
     public partial class MemberPermissionPage
     {
+        void LoadEventList()
+        {
+            LoadEvent_RemoveMember();
+        }
+
+        void LoadEvent_RemoveMember()
+        {
+
+            btnDelMember.MouseUpEventHandler = (sender, e) =>
+            {
+                Action action = () =>
+                {
+                    ResponsePack responePack = new HttpServerRequest().DeleteResidenceMemberAccount(memberInfo.SubAccountDistributedMark);
+                    if (responePack.StateCode.ToUpper() == "SUCCESS")
+                    {
+                        this.RemoveFromParent();
+                        backAction();
+                    }
+                };
+                new PublicAssmebly().TipMsg(StringId.Tip, StringId.ConfirmToRemoveTheMember, action);
+            };
+        }
     }
 }

--
Gitblit v1.8.0