Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
995b820b
提交
995b820b
authored
1月 08, 2024
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
1396 考场监考老师、QQ群等信息能批量导入。
上级
239a06c1
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
39 行增加
和
12 行删除
+39
-12
ImportUtil.js
one_stop_public/App/ImportUtil.js
+33
-7
services.js
one_stop_public/Services/services.js
+6
-0
request.js
one_stop_public/utils/request.js
+0
-5
没有找到文件。
one_stop_public/App/ImportUtil.js
浏览文件 @
995b820b
...
...
@@ -14,7 +14,7 @@ import {
getSassApiHeader
,
getSysCode
}
from
'@/webPublic/one_stop_public/2023yunshangguizhou/utils'
;
import
{
getServicesNomal
,
importExecute
}
from
'../Services/services'
;
import
{
decodeObjKey
,
getServicesNomal
,
importExecute
}
from
'../Services/services'
;
import
{
importDataQueryApi
,
importAnalyseApi
}
from
'../Services/apiConfig'
;
const
Modal
=
getModal
();
...
...
@@ -51,6 +51,7 @@ export default class ImportUtil extends React.PureComponent {
// exportTemplateUrl,
isNextDisabled
:
false
,
trueObjId
:
''
,
};
}
...
...
@@ -129,11 +130,15 @@ export default class ImportUtil extends React.PureComponent {
import
()
{
const
{
importParams
,
objId
,
}
=
this
.
props
;
const
{
trueObjId
}
=
this
.
state
;
importExecute
({
...(
importParams
||
{}),
cacheKey
:
this
.
state
.
fileCacheKey
,
objId
:
t
his
.
props
.
objId
,
objId
:
t
rueObjId
||
objId
,
}).
then
(
res
=>
{
if
(
res
&&
res
.
sync
===
false
&&
res
.
total
)
{
// 23013 学生事务/学生医保管理/学生平安险/保险办理,2001010248 高职界面已购买 导入 报错【接口超时】
...
...
@@ -142,7 +147,7 @@ export default class ImportUtil extends React.PureComponent {
});
return
;
}
this
.
next
();
message
.
success
(
'导入成功'
,
1
);
this
.
setState
({
...
...
@@ -157,14 +162,16 @@ export default class ImportUtil extends React.PureComponent {
const
{
importParams
,
importConfig
,
objId
,
}
=
this
.
props
;
const
{
trueObjId
}
=
this
.
state
;
getServicesNomal
(
importAnalyseApi
,
{
...(
importParams
||
{}),
isLocal
:
false
,
filePath
,
importConfig
:
importConfig
?
JSON
.
stringify
(
importConfig
)
:
null
,
objId
:
t
his
.
props
.
objId
,
objId
:
t
rueObjId
||
objId
,
}).
then
(
res
=>
{
this
.
setState
({
fileCacheKey
:
res
.
cacheKey
,
...
...
@@ -175,11 +182,13 @@ export default class ImportUtil extends React.PureComponent {
queryFile
=
(
cacheKey
)
=>
{
const
{
importParams
,
objId
,
}
=
this
.
props
;
const
{
trueObjId
}
=
this
.
state
;
getServicesNomal
(
importDataQueryApi
,
{
...(
importParams
||
{}),
cacheKey
,
objId
:
t
his
.
props
.
objId
,
objId
:
t
rueObjId
||
objId
,
}).
then
(
res
=>
{
this
.
setState
({
current
:
1
,
...
...
@@ -220,20 +229,34 @@ export default class ImportUtil extends React.PureComponent {
this
.
setState
({
currentKey
:
activeKey
});
};
componentDidMount
()
{
// 1396 考场监考老师、QQ群等信息能批量导入。
if
(
this
.
props
.
importConfig
?.
objKey
&&
typeof
this
.
props
.
importConfig
.
objKey
===
'string'
&&
this
.
props
.
importConfig
.
objKey
.
length
>
10
){
decodeObjKey
(
this
.
props
.
importConfig
.
objKey
).
then
((
res
)
=>
{
if
(
res
&&
typeof
res
===
'string'
&&
res
.
length
>
10
)
{
console
.
log
(
res
,
res
.
length
);
this
.
setState
({
trueObjId
:
res
,
})
}
})
}
}
downloadFile
=
async
()
=>
{
this
.
setState
({
confirmLoading
:
true
});
const
{
objId
,
fileName
,
importParams
,
importConfig
,
}
=
this
.
props
;
const
{
trueObjId
}
=
this
.
state
;
const
params
=
{
...
importParams
,
importConfig
:
importConfig
?
JSON
.
stringify
(
importConfig
)
:
null
,
objId
,
objId
:
trueObjId
||
objId
,
fileName
,
};
let
url
=
`
${
config
.
httpServer
}
/DataObjApi/importTemplateDownload`
;
...
...
@@ -370,6 +393,9 @@ export default class ImportUtil extends React.PureComponent {
className
:
'defaultBlue'
,
...(
this
.
props
.
btn
?
this
.
props
.
btn
:
{}),
};
if
(
this
.
state
.
visible
){
console
.
log
(
this
.
props
);
}
return
(
<
span
>
...
...
one_stop_public/Services/services.js
浏览文件 @
995b820b
...
...
@@ -33,3 +33,9 @@ export const importExecute = (params) => {
'导入的文件中可能存在字段不一致、字段类型不匹配、唯一性字段冲突,请检查或联系系统管理员'
,
// 自定义errMsg
});
};
export
const
decodeObjKey
=
(
code
)
=>
{
return
apiRequest
(
'/SnowflakeUtilApi/decode'
,
{
code
,
});
};
one_stop_public/utils/request.js
浏览文件 @
995b820b
...
...
@@ -166,12 +166,7 @@ export async function request(url, data, options = {}) {
export
async
function
requestOrigin
(
url
,
data
,
options
=
{
credentials
:
'include'
,
}){
console
.
log
(
options
);
let
version
=
getVersion
();
if
(
options
.
method
===
'GET'
)
{
const
pp
=
{
...
data
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论