From 32555f8668cd69cfd67fe8c661f503db2f45f2ce Mon Sep 17 00:00:00 2001
From: liyaozhi <lzhflash@163.com>
Date: Sun, 16 Nov 2025 23:21:30 +0800
Subject: [PATCH] 1、小程序端分会管理可以添加会员; 2、后台可自定义连盟汇一些页面的的标题; 3、职务和电话增加是否显示的开关; 4、小程序端添加活动增加报名时间; 5、修复分会后台无法上传视频的问题。

---
 admin/app/api/model/branch/Member.php |   13 +++++--------
 1 files changed, 5 insertions(+), 8 deletions(-)

diff --git a/admin/app/api/model/branch/Member.php b/admin/app/api/model/branch/Member.php
index 7052205..a14aafc 100644
--- a/admin/app/api/model/branch/Member.php
+++ b/admin/app/api/model/branch/Member.php
@@ -69,10 +69,10 @@
      * @param $data
      * @return bool
      */
-    public function edit($data)
-    {
-        return $this->save($data) !== false;
-    }
+    // public function edit($data)
+    // {
+    //     return $this->save($data) !== false;
+    // }
 
     /**
      * 删除连盟成员
@@ -81,10 +81,7 @@
     public function setDelete()
     {
         return $this->transaction(function () {
-            // 标记当前股东记录为已删除
-            return $this->save([
-                'is_delete' => 1
-            ]);
+            return $this->delete();
         });
     }
     

--
Gitblit v1.9.2