Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
07dab689
提交
07dab689
authored
6月 22, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
request 函数放在公共函数库
上级
6553cb56
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
9 行增加
和
5 行删除
+9
-5
binaryEncode.js
one_stop_public/Base16/binaryEncode.js
+3
-3
index.jsx
one_stop_public/Base16/index.jsx
+1
-1
token.js
one_stop_public/utils/token.js
+4
-0
request.js
zyd_public/request/request.js
+1
-1
没有找到文件。
one_stop_public/Base16/binaryEncode.js
浏览文件 @
07dab689
...
...
@@ -86,7 +86,7 @@ export function giveFilePostData(datas, url) {
}
if
(
url
&&
typeof
url
===
'string'
)
{
for
(
let
item
of
encryptApiList
)
{
if
(
window
.
CONFIG
?.
ALLBIN
||
url
.
indexOf
(
item
.
api
)
>
-
1
)
{
if
(
(
window
.
CONFIG
?.
ALLBIN
&&
url
.
indexOf
(
'/onestop/'
)
>
-
1
)
||
url
.
indexOf
(
item
.
api
)
>
-
1
)
{
const
roleGroup
=
getUserInfo
().
groupsId
;
if
(
url
.
indexOf
(
'http'
)
>
-
1
)
{
url
=
url
.
replace
(
'/onestop/'
,
`/onestop/safe/
${
roleGroup
}
/`
);
...
...
@@ -109,14 +109,14 @@ export function giveFilePostData(datas, url) {
});
}
function
testPromise
(
d
){
function
testPromise
(
d
)
{
return
new
Promise
((
resolve
,
reject
)
=>
{
resolve
(
d
);
});
}
export
async
function
requestFileInfo
(
url
,
datas
)
{
for
(
let
i
=
0
;
i
<
100
;
i
++
)
{
for
(
let
i
=
0
;
i
<
100
;
i
++
)
{
datas
=
await
testPromise
(
datas
);
}
const
formData
=
new
FormData
();
...
...
one_stop_public/Base16/index.jsx
浏览文件 @
07dab689
...
...
@@ -10,7 +10,7 @@ export { Base16Encode, requestFileInfo, giveFilePostDataInfoForTrue };
export
async
function
giveBase16EnCode
(
datas
,
url
)
{
// 全局加解密函数.
if
(
queryIsSafe
())
{
if
(
queryIsSafe
()
&&
url
)
{
return
giveFilePostData
(
datas
,
url
);
}
return
giveBase16EncodeAsync
(
datas
,
url
);
...
...
one_stop_public/utils/token.js
浏览文件 @
07dab689
...
...
@@ -70,3 +70,7 @@ export function getType() {
return
localStorage
.
getItem
(
'antd-pro-type'
)
||
""
;
}
export
function
setType
(
type
)
{
return
localStorage
.
setItem
(
'antd-pro-type'
,
type
);
}
zyd_public/request/request.js
浏览文件 @
07dab689
...
...
@@ -9,7 +9,7 @@ import { omit } from 'lodash';
import
qs
from
'qs'
;
import
{
queryIsSafe
}
from
'@/webPublic/one_stop_public/utils/queryConfig'
;
import
{
uaaRequest
}
from
'@/webPublic/one_stop_public/utils/request'
;
import
{
getToken
,
setToken
,
setFetchUrl
,
getFetchUrl
,
getType
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
{
getToken
,
setToken
,
setFetchUrl
,
getFetchUrl
,
getType
,
setType
}
from
'@/webPublic/one_stop_public/utils/token'
;
const
codeMessage
=
{
200
:
'服务器成功返回请求的数据。'
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论