feat(数据集): 计算字段中的 SQL 片段在传输过程中进行加密处理 #15446

This commit is contained in:
dataeaseShu
2025-03-24 14:10:37 +08:00
committed by dataeaseShu
parent ab3eb24b02
commit 13b6bf5e48

View File

@@ -71,7 +71,7 @@ export interface Table {
unableCheck?: boolean
}
const originNameHandle = arr => {
const originNameHandle = (arr = []) => {
arr.forEach(ele => {
if (ele.extField === 2) {
ele.originName = Base64.encodeURI(ele.originName)
@@ -79,7 +79,7 @@ const originNameHandle = arr => {
})
}
const originNameHandleBack = arr => {
const originNameHandleBack = (arr = []) => {
arr.forEach(ele => {
if (ele.extField === 2) {
ele.originName = Base64.decode(ele.originName)