From b515141637a6c3792547bd8d9baf19af6c32baa6 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 10 六月 2025 23:04:51 +0800 Subject: [PATCH] 2025-06-10 --- src/tabviews/zshare/actionList/normalbutton/index.jsx | 15 ++++++++++----- 1 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/tabviews/zshare/actionList/normalbutton/index.jsx b/src/tabviews/zshare/actionList/normalbutton/index.jsx index f0d8b87..6a1abc0 100644 --- a/src/tabviews/zshare/actionList/normalbutton/index.jsx +++ b/src/tabviews/zshare/actionList/normalbutton/index.jsx @@ -2682,11 +2682,16 @@ delete result.message delete result.status - param = { - ...outParam, - ...result, - func: btn.callbackFunc - } + param = {} + + Object.keys(outParam).forEach(key => { + param[key.toLowerCase()] = outParam[key] + }) + Object.keys(result).forEach(key => { + param[key.toLowerCase()] = result[key] + }) + + param.func = btn.callbackFunc if (window.GLOB.mkHS) { if (btn.callbackFunc === 's_sVersion_Local_add' && window.GLOB.forcedUpdate) { // special 浼犺緭鍙锋坊鍔犲洖璋冨鐞� -- Gitblit v1.8.0