Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
509bd9e0
提交
509bd9e0
authored
3月 06, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
加解密函数修改
上级
64256470
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
9 行增加
和
8 行删除
+9
-8
index.jsx
one_stop_public/Base16/index.jsx
+5
-2
ZdyTable.jsx
one_stop_public/Table/ZdyTable.jsx
+1
-1
index.jsx
one_stop_public/tableCompon/index.jsx
+1
-1
request.js
one_stop_public/utils/request.js
+2
-4
没有找到文件。
one_stop_public/Base16/index.jsx
浏览文件 @
509bd9e0
...
@@ -107,7 +107,7 @@ const encryptApiList = [
...
@@ -107,7 +107,7 @@ const encryptApiList = [
datas
.
allValues
=
JSON
.
stringify
({});
datas
.
allValues
=
JSON
.
stringify
({});
}
else
{
}
else
{
if
(
item
.
query
)
{
if
(
item
.
query
)
{
if
(
datas
.
sqlKey
.
length
<
13
)
{
if
(
datas
?
.
sqlKey
.
length
<
13
)
{
const
response
=
await
apiRequest
(
"/SqlManageEntityApi/findParamsKey"
,
{
sqlKey
:
datas
.
sqlKey
});
const
response
=
await
apiRequest
(
"/SqlManageEntityApi/findParamsKey"
,
{
sqlKey
:
datas
.
sqlKey
});
if
(
!
response
||
(
Array
.
isArray
(
response
)
&&
response
.
length
===
0
))
{
if
(
!
response
||
(
Array
.
isArray
(
response
)
&&
response
.
length
===
0
))
{
datas
.
allValues
=
JSON
.
stringify
({});
datas
.
allValues
=
JSON
.
stringify
({});
...
@@ -135,11 +135,14 @@ export async function giveBase16EnCode(datas, url) { // 全局加解密函数.
...
@@ -135,11 +135,14 @@ export async function giveBase16EnCode(datas, url) { // 全局加解密函数.
if
(
!
checkOpenBase16
){
if
(
!
checkOpenBase16
){
return
datas
;
return
datas
;
}
}
// if(datas?.allValues){
// console.log(JSON.stringify(datas));
// }
if
(
url
&&
typeof
url
===
"string"
)
{
if
(
url
&&
typeof
url
===
"string"
)
{
for
(
let
item
of
encryptApiList
)
{
for
(
let
item
of
encryptApiList
)
{
if
(
url
.
indexOf
(
item
.
api
)
>
-
1
)
{
if
(
url
.
indexOf
(
item
.
api
)
>
-
1
)
{
for
(
let
g
of
item
.
key
)
{
for
(
let
g
of
item
.
key
)
{
if
(
g
===
'allValues'
){
if
(
g
===
'allValues'
&&
typeof
datas
[
g
]
!==
'undefined'
){
datas
=
await
countAllValues
(
datas
,
item
);
datas
=
await
countAllValues
(
datas
,
item
);
datas
=
giveKey
(
'allValues'
,
datas
);
datas
=
giveKey
(
'allValues'
,
datas
);
}
else
{
}
else
{
...
...
one_stop_public/Table/ZdyTable.jsx
浏览文件 @
509bd9e0
...
@@ -131,7 +131,7 @@ export default class ZdyTable extends Component {
...
@@ -131,7 +131,7 @@ export default class ZdyTable extends Component {
val
.
unifiedServicePatternModel
.
isDefaultError
!=
null
&&
val
.
unifiedServicePatternModel
.
isDefaultError
!=
null
&&
val
.
unifiedServicePatternModel
.
isDefaultError
val
.
unifiedServicePatternModel
.
isDefaultError
)
{
)
{
if
(
this
.
props
.
get
==
'web'
)
{
if
(
this
.
props
.
get
==
=
'web'
)
{
message
.
error
(
'当前办理人数较多,服务繁忙,请稍后再试!'
);
message
.
error
(
'当前办理人数较多,服务繁忙,请稍后再试!'
);
}
else
{
}
else
{
Toast
.
fail
(
'当前办理人数较多,服务繁忙,请稍后再试!'
);
Toast
.
fail
(
'当前办理人数较多,服务繁忙,请稍后再试!'
);
...
...
one_stop_public/tableCompon/index.jsx
浏览文件 @
509bd9e0
...
@@ -914,7 +914,7 @@ export default class tableCom extends Component {
...
@@ -914,7 +914,7 @@ export default class tableCom extends Component {
}
}
if
(
callback
)
{
if
(
callback
)
{
if
(
json
.
optionType
&&
json
.
optionType
==
'func'
)
{
if
(
json
.
optionType
&&
json
.
optionType
==
=
'func'
)
{
const
res
=
callback
(
data
);
const
res
=
callback
(
data
);
if
(
res
!=
null
&&
!
(
typeof
res
===
'function'
))
{
if
(
res
!=
null
&&
!
(
typeof
res
===
'function'
))
{
...
...
one_stop_public/utils/request.js
浏览文件 @
509bd9e0
...
@@ -118,7 +118,7 @@ const getUrl = url => (url.startsWith('/') ? url : '/' + url);
...
@@ -118,7 +118,7 @@ const getUrl = url => (url.startsWith('/') ? url : '/' + url);
export
const
request
=
(
url
,
data
,
options
=
{})
=>
{
export
const
request
=
(
url
,
data
,
options
=
{})
=>
{
return
giveBase16EnCode
(
data
,
url
).
then
((
newData
)
=>
{
return
giveBase16EnCode
(
data
,
url
).
then
((
newData
)
=>
{
console
.
log
(
newData
);
//
console.log(newData);
return
requestOrigin
(
url
,
newData
,
options
);
return
requestOrigin
(
url
,
newData
,
options
);
});
});
}
}
...
@@ -156,7 +156,7 @@ export const requestOrigin = (url, data, options = {}) => {
...
@@ -156,7 +156,7 @@ export const requestOrigin = (url, data, options = {}) => {
...
options
,
...
options
,
})
})
.
then
(
response
=>
{
.
then
(
response
=>
{
console
.
log
(
response
);
//
console.log(response);
if
(
response
&&
response
.
errMsg
){
if
(
response
&&
response
.
errMsg
){
response
.
errMsg
=
response
.
errMsg
.
slice
(
0
,
50
);
response
.
errMsg
=
response
.
errMsg
.
slice
(
0
,
50
);
}
}
...
@@ -321,8 +321,6 @@ const setRequestConfig = config => {
...
@@ -321,8 +321,6 @@ const setRequestConfig = config => {
}),
}),
);
);
}
}
console
.
log
(
url
,
config
);
return
request
(
url
,
data
,
{
...
options
,
...
config
});
return
request
(
url
,
data
,
{
...
options
,
...
config
});
};
};
};
};
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论