Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
c19401be
提交
c19401be
authored
3月 25, 2023
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
用户授权功能开发
上级
996c57e1
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
223 行增加
和
1 行删除
+223
-1
SplitBasicLayout.js
zyd_private/BasicLayout/SplitBasicLayout.js
+15
-1
fetchData.ts
zyd_public/requestJson/fetchData.ts
+30
-0
requestJson.js
zyd_public/requestJson/requestJson.js
+178
-0
没有找到文件。
zyd_private/BasicLayout/SplitBasicLayout.js
浏览文件 @
c19401be
...
...
@@ -30,6 +30,20 @@ const query = {
}
};
const
getYunShangGuiZhouSyStemConfig
=
()
=>
{
const
localStorageData
=
localStorage
.
getItem
(
'antd-pro-systemConfig'
);
if
(
localStorageData
&&
isJSON
(
localStorageData
)){
let
d
=
JSON
.
parse
(
localStorageData
);
return
{
sysCode
:
d
.
code
,
logo
:
''
,
name
:
d
.
name
,
siteId
:
'5'
,
siteUrl
:
''
,
};
}
};
const
getSystemConfig
=
()
=>
{
const
urlParams
=
new
URL
(
window
.
location
.
href
);
const
systemList
=
[
"/xg/"
,
"/yx/"
,
"/jy/"
,
"/lx/"
,
"/sg/"
,
"/xl/"
,
"/zs/"
,
"/uaa/"
,
"/tw/"
,
"/ytw/"
,
"/wzb/"
,
"/szcp/"
];
...
...
@@ -138,7 +152,7 @@ const insertActiveMenus = (routes = [], insertRoutes = []) => {
}
return
routes
;
};
export
{
antIcon
,
query
,
getSystemConfig
,
formatter
,
getMenuData
,
insertActiveMenus
};
export
{
antIcon
,
query
,
getSystemConfig
,
formatter
,
getMenuData
,
insertActiveMenus
,
getYunShangGuiZhouSyStemConfig
};
export
const
getDiyChineseMenus
=
()
=>
{
const
menuChineseConfig
=
getSysConfig
().
menuChineseConfig
;
...
...
zyd_public/requestJson/fetchData.ts
0 → 100644
浏览文件 @
c19401be
/**
* 2020年7月14日 10:38:36
* 用于校验短时间内的重复提交
* */
const
key
=
'fetch-url-data'
;
// 保存上一次请求的 url 和 time, body
const
key2
=
'fetch-url-response'
;
export
function
setFetchUrl
(
data
:
string
):
void
{
localStorage
.
setItem
(
key
,
data
);
}
export
function
getFetchUrl
():
string
{
const
res
=
localStorage
.
getItem
(
key
);
if
(
!
res
)
{
return
''
;
}
else
{
return
res
;
}
}
export
function
saveResponse
(
data
:
string
)
{
localStorage
.
setItem
(
key2
,
data
);
// 保存上一次请求返回的data
}
export
function
getLastResponse
()
{
const
res
=
localStorage
.
getItem
(
key2
);
// 获取上一次请求返回的data 应该是一个json
if
(
!
res
)
{
return
''
;
}
else
{
return
res
;
}
}
zyd_public/requestJson/requestJson.js
0 → 100644
浏览文件 @
c19401be
require
(
'es6-promise'
).
polyfill
();
require
(
'isomorphic-fetch'
);
import
{
getToken
,
setToken
}
from
'@/webPublic/one_stop_public/utils/token'
;
import
{
controlNotification
,
isJSON
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
{
setFetchUrl
,
getFetchUrl
}
from
'./fetchData'
;
const
codeMessage
=
{
200
:
'服务器成功返回请求的数据。'
,
201
:
'新建或修改数据成功。'
,
202
:
'一个请求已经进入后台排队(异步任务)。'
,
204
:
'删除数据成功。'
,
400
:
'发出的请求有错误,服务器没有进行新建或修改数据的操作。'
,
401
:
'登录已过期,请重新登录'
,
403
:
'用户得到授权,但是访问是被禁止的。'
,
404
:
'发出的请求针对的是不存在的记录,服务器没有进行操作。'
,
406
:
'请求的格式不可得。'
,
410
:
'请求的资源被永久删除,且不会再得到的。'
,
422
:
'当创建一个对象时,发生一个验证错误。'
,
500
:
'服务器发生错误,请检查服务器。'
,
502
:
'网关错误。'
,
503
:
'服务不可用,服务器暂时过载或维护。'
,
504
:
'网关超时。'
,
};
const
checkStatus
=
(
response
)
=>
{
const
status
=
Number
(
response
.
status
);
if
(
status
===
200
)
{
return
response
;
}
const
errortext
=
codeMessage
[
status
]
||
response
.
message
;
const
token
=
getToken
();
if
(
token
&&
token
!==
'null'
)
{
controlNotification
({
message
:
`
${
status
===
401
?
'登录过期'
:
'请求错误'
}
`
,
description
:
errortext
,
});
}
if
(
status
===
401
)
{
setToken
(
''
);
return
{
status
:
401
,
message
:
'登录过期'
,
// token不对
};
}
const
error
=
new
Error
(
errortext
);
error
.
name
=
status
+
''
;
console
.
error
(
response
.
message
);
throw
error
;
};
async
function
queryLocalStorage
()
{
return
false
;
}
function
setFetchInfo
(
url
,
options
)
{
let
session
=
getFetchUrl
();
if
(
isJSON
(
session
))
{
let
newSession
=
JSON
.
parse
(
session
);
if
(
newSession
.
url
===
url
&&
new
Date
().
valueOf
()
-
newSession
.
time
<
500
)
{
if
(
options
.
body
&&
JSON
.
stringify
(
options
.
body
)
===
newSession
.
body
)
{
console
.
log
(
'频繁调用接口: '
,
url
,
newSession
.
body
);
return
''
;
}
}
}
return
JSON
.
stringify
({
url
,
time
:
new
Date
().
valueOf
(),
body
:
options
.
body
?
JSON
.
stringify
(
options
.
body
)
:
''
,
});
}
export
default
function
requestJson
(
url
,
options
)
{
let
sessionFetch
=
setFetchInfo
(
url
,
options
);
if
(
!
sessionFetch
)
{
return
queryLocalStorage
();
}
else
{
setFetchUrl
(
sessionFetch
);
}
let
defaultToken
=
getToken
();
const
token
=
defaultToken
!==
null
&&
defaultToken
!==
'null'
?
defaultToken
:
''
;
if
(
options
.
time
)
{
const
time
=
new
Date
().
getTime
();
if
(
url
.
indexOf
(
'?'
)
===
-
1
)
{
url
=
url
+
'?time='
+
time
;
}
else
{
url
=
url
+
'&time='
+
time
;
}
}
const
defaultOptions
=
{
credentials
:
'omit'
,
mode
:
'cors'
,
};
let
newOptions
=
{
...
defaultOptions
,
...
options
};
if
(
token
)
{
url
=
url
.
indexOf
(
'?'
)
>
-
1
?
`
${
url
}
&token=
${
token
}
`
:
`
${
url
}
?token=
${
token
}
`
;
}
newOptions
=
{
method
:
'POST'
,
// 暂时支持post 请求
headers
:
{
Accept
:
'application/json;charset=UTF-8'
,
'Content-Type'
:
'application/json'
,
...
newOptions
.
headers
,
},
...
newOptions
,
body
:
JSON
.
stringify
(
newOptions
.
body
),
};
if
(
options
.
method
&&
options
.
method
.
toUpperCase
()
===
'GET'
)
{
newOptions
.
body
=
undefined
;
}
return
fetch
(
url
,
newOptions
)
.
then
((
res
)
=>
{
return
checkStatus
(
res
);
})
.
then
((
response
)
=>
{
return
response
.
json
();
})
.
then
((
response
)
=>
{
if
(
response
.
state
===
401
)
{
return
{
status
:
401
,
message
:
'token无效,认证失败!'
,
// 可能是跨域 可能是token过期
};
}
if
(
response
.
status
===
401
)
{
return
response
;
}
if
(
typeof
response
.
code
===
'undefined'
||
response
.
code
===
'invalid_token'
)
{
return
response
;
}
if
(
response
.
code
===
'0'
&&
typeof
response
.
data
!==
'undefined'
)
{
return
response
.
data
;
// 真正需要的数据
}
else
{
if
(
response
.
message
)
{
controlNotification
({
message
:
response
.
message
,
});
const
error
=
new
Error
(
response
.
message
);
error
.
name
=
response
.
code
;
console
.
error
(
response
.
message
);
throw
error
;
}
else
{
controlNotification
({
message
:
'数据错误'
,
});
const
error
=
new
Error
(
response
.
code
);
error
.
name
=
response
.
code
;
console
.
error
(
response
.
code
);
throw
error
;
}
}
})
.
catch
((
e
)
=>
{
const
status
=
e
.
name
;
if
(
status
===
401
)
{
return
false
;
}
if
(
!
window
.
navigator
.
onLine
)
{
return
controlNotification
({
message
:
'网络故障'
,
description
:
`无法连接到网络,请稍后再试`
,
});
}
controlNotification
({
message
:
'网络故障'
,
description
:
`无法连接到服务器,请稍后再试`
,
});
return
;
});
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论