Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
d02c9365
提交
d02c9365
authored
10月 20, 2020
作者:
xuli
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
添加请求
上级
1bb62ce7
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
17 行增加
和
10 行删除
+17
-10
ImportUtil.js
one_stop_public/App/ImportUtil.js
+0
-0
queryConfig.js
one_stop_public/utils/queryConfig.js
+5
-0
request.js
one_stop_public/utils/request.js
+12
-10
没有找到文件。
one_stop_public/App/ImportUtil.js
浏览文件 @
d02c9365
差异被折叠。
点击展开。
one_stop_public/utils/queryConfig.js
浏览文件 @
d02c9365
...
...
@@ -20,6 +20,11 @@ export const querySysCode = () => queryConfig("SYSCODE");
export
const
queryWsPath
=
()
=>
queryConfig
(
"WS_PATH"
);
/**
* @description 获取场景设计器定制后台地址
* */
export
const
queryDynamicActionPath
=
()
=>
queryConfig
(
"DYNAMIC_ACTION_PATH"
);
/**
* @description 获取服务端请求路径前戳
* */
...
...
one_stop_public/utils/request.js
浏览文件 @
d02c9365
...
...
@@ -5,7 +5,7 @@
import
{
extend
}
from
'umi-request'
;
import
{
notification
}
from
'antd'
;
import
{
getToken
}
from
'./token'
;
import
{
queryApiActionPath
,
queryOauthActionPath
,
queryPermActionPath
}
from
'./queryConfig'
;
import
{
queryApiActionPath
,
queryOauthActionPath
,
queryPermActionPath
,
queryDynamicActionPath
}
from
'./queryConfig'
;
import
{
openToast
}
from
'../location/Notification'
;
import
{
showToast
}
from
'../location/Toast'
;
import
{
offline
}
from
'../location/Toast'
;
...
...
@@ -33,7 +33,7 @@ const codeMessage = {
*
* return URL参数字符串
*/
const
objectToQuery
=
function
(
param
,
key
,
encode
)
{
const
objectToQuery
=
function
(
param
,
key
,
encode
)
{
if
(
param
==
null
)
return
''
;
var
paramStr
=
''
;
var
t
=
typeof
param
;
...
...
@@ -134,8 +134,8 @@ export const request = (url, data, options = {}) => {
window
.
location
.
href
=
x
.
mobileAdress
?
mobileAdress
+
'?timeVersion='
+
time
:
ul
.
indexOf
(
'?'
)
>
-
1
?
ul
+
'&timeVersion='
+
time
:
ul
+
'?timeVersion='
+
time
;
?
ul
+
'&timeVersion='
+
time
:
ul
+
'?timeVersion='
+
time
;
}
else
{
sessionStorage
.
removeItem
(
'cacheMobile'
);
openToast
(
'error'
,
'版本更新'
,
'检查到最新版本,即将自动更新,更新完成后请重新操作'
);
...
...
@@ -143,8 +143,8 @@ export const request = (url, data, options = {}) => {
window
.
location
.
href
=
x
.
webAdress
?
x
.
webAdress
+
'?timeVersion='
+
time
:
ul
.
indexOf
(
'?'
)
>
-
1
?
ul
+
'&timeVersion='
+
time
:
ul
+
'?timeVersion='
+
time
;
?
ul
+
'&timeVersion='
+
time
:
ul
+
'?timeVersion='
+
time
;
}
setTimeout
(()
=>
location
.
reload
(),
3000
);
}
...
...
@@ -209,8 +209,8 @@ export const request = (url, data, options = {}) => {
window
.
location
.
href
=
x
.
mobileAdress
?
mobileAdress
+
'?timeVersion='
+
time
:
ul
.
indexOf
(
'?'
)
>
-
1
?
ul
+
'&timeVersion='
+
time
:
ul
+
'?timeVersion='
+
time
;
?
ul
+
'&timeVersion='
+
time
:
ul
+
'?timeVersion='
+
time
;
}
else
{
sessionStorage
.
removeItem
(
'cacheMobile'
);
openToast
(
'error'
,
'版本更新'
,
'检查到最新版本,即将自动更新,更新完成后请重新操作'
);
...
...
@@ -218,8 +218,8 @@ export const request = (url, data, options = {}) => {
window
.
location
.
href
=
x
.
webAdress
?
x
.
webAdress
+
'?timeVersion='
+
time
:
ul
.
indexOf
(
'?'
)
>
-
1
?
ul
+
'&timeVersion='
+
time
:
ul
+
'?timeVersion='
+
time
;
?
ul
+
'&timeVersion='
+
time
:
ul
+
'?timeVersion='
+
time
;
}
setTimeout
(()
=>
location
.
reload
(),
3000
);
}
...
...
@@ -271,6 +271,8 @@ const createServerRequest = (config = {}) => {
return
setRequestConfig
(
config
);
};
export
const
dynamicRequest
=
createServerRequest
({
method
:
'POST'
,
prefix
:
queryDynamicActionPath
()
});
export
const
uaaRequest
=
createServerRequest
({
method
:
'POST'
,
prefix
:
queryOauthActionPath
()
});
export
const
permRequest
=
createServerRequest
({
method
:
'POST'
,
prefix
:
queryPermActionPath
()
});
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论