From c0e017668d780c40f85230f227ea0160b5d22d4d Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期二, 20 二月 2024 14:13:00 +0800 Subject: [PATCH] Merge branch 'master' into positec --- src/views/systemproc/proc/index.jsx | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/views/systemproc/proc/index.jsx b/src/views/systemproc/proc/index.jsx index 577e462..100a0ff 100644 --- a/src/views/systemproc/proc/index.jsx +++ b/src/views/systemproc/proc/index.jsx @@ -162,22 +162,24 @@ let dropParam = { func: 'sPC_TableData_InUpDe', - LText: Utils.formatOptions(dropfunc), + LText: Utils.formatOptions(dropfunc, window.GLOB.execType || 'y'), + exec_type: window.GLOB.execType || 'y', TypeCharOne: 'proc' // 鍒犻櫎瀛樺偍杩囩▼ } dropParam.timestamp = moment().format('YYYY-MM-DD HH:mm:ss') - dropParam.secretkey = Utils.encrypt(dropParam.LText, dropParam.timestamp) + dropParam.secretkey = Utils.encrypt('', dropParam.timestamp) dropParam.open_key = Utils.encryptOpenKey(dropParam.secretkey, dropParam.timestamp) let createParam = { func: 'sPC_TableData_InUpDe', - LText: Utils.formatOptions(createfunc), + LText: Utils.formatOptions(createfunc, window.GLOB.execType || 'y'), + exec_type: window.GLOB.execType || 'y', TypeCharOne: 'proc' // 鍒涘缓瀛樺偍杩囩▼ } createParam.timestamp = moment().format('YYYY-MM-DD HH:mm:ss') - createParam.secretkey = Utils.encrypt(createParam.LText, createParam.timestamp) + createParam.secretkey = Utils.encrypt('', createParam.timestamp) createParam.open_key = Utils.encryptOpenKey(createParam.secretkey, createParam.timestamp) let saveParam = { -- Gitblit v1.8.0