From b987be8dd8b6bc1fa01810daa1e1a60e58a3c921 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期五, 04 九月 2020 17:24:36 +0800 Subject: [PATCH] 2020-09-04 --- src/tabviews/verupmanage/actionList/index.jsx | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tabviews/verupmanage/actionList/index.jsx b/src/tabviews/verupmanage/actionList/index.jsx index 901e639..740119b 100644 --- a/src/tabviews/verupmanage/actionList/index.jsx +++ b/src/tabviews/verupmanage/actionList/index.jsx @@ -229,7 +229,7 @@ } if (param.timestamp) { // 浜戠楠岃瘉 - param.open_key = Utils.encrypt(param.secretkey, param.timestamp, true) + param.open_key = Utils.encryptOpenKey(param.secretkey, param.timestamp) } Api.genericInterface(param).then((res) => { @@ -328,7 +328,7 @@ } if (param.timestamp) { // 浜戠楠岃瘉 - param.open_key = Utils.encrypt(param.secretkey, param.timestamp, true) + param.open_key = Utils.encryptOpenKey(param.secretkey, param.timestamp) } return param @@ -533,7 +533,7 @@ if (_localParam.LTextOut) { _localParam.timestamp = moment().format('YYYY-MM-DD HH:mm:ss') + '.000' _localParam.secretkey = Utils.encrypt(_localParam.LTextOut, _localParam.timestamp) - _localParam.open_key = Utils.encrypt(_localParam.secretkey, _localParam.timestamp, true) + _localParam.open_key = Utils.encryptOpenKey(_localParam.secretkey, _localParam.timestamp) } } delete response.UpType @@ -542,7 +542,7 @@ if (_callbackparam.LTextOut) { _callbackparam.timestamp = moment().format('YYYY-MM-DD HH:mm:ss') + '.000' _callbackparam.secretkey = Utils.encrypt(_callbackparam.LTextOut, _callbackparam.timestamp) - _callbackparam.open_key = Utils.encrypt(_callbackparam.secretkey, _callbackparam.timestamp, true) + _callbackparam.open_key = Utils.encryptOpenKey(_callbackparam.secretkey, _callbackparam.timestamp) } return Api.getLocalConfig(_callbackparam) -- Gitblit v1.8.0