Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
member
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
member
member
Commits
1d089567
Commit
1d089567
authored
Aug 04, 2022
by
曾经
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导入成功提示
parent
9f75cc7e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
3 deletions
+22
-3
importDialog.vue
src/components/allCustomers/components/importDialog.vue
+4
-2
white-list.js
...ents/wechatmembers/frozen-member/white-list/white-list.js
+18
-1
No files found.
src/components/allCustomers/components/importDialog.vue
View file @
1d089567
...
...
@@ -176,9 +176,11 @@ export default {
formData
.
append
(
'requestProject'
,
'member'
);
formData
.
append
(
'batchType'
,
importValue
);
doFetch
(
url
.
uploadExecl
,
formData
).
then
((
res
)
=>
{
let
{
errorCode
}
=
res
.
data
;
let
{
errorCode
,
result
}
=
res
.
data
;
if
(
errorCode
==
0
){
checkSuccess
(
'上传成功'
)
this
.
$emit
(
'successImport'
,
result
);
this
.
$refs
.
formByImport
.
resetFields
();
this
.
$refs
.
importFile
.
reset
();
this
.
onDialogImportClosed
();
}
}).
finally
(()
=>
{
...
...
src/components/wechatmembers/frozen-member/white-list/white-list.js
View file @
1d089567
...
...
@@ -153,6 +153,23 @@ export default {
path
:
"/customerDetail"
,
query
:
{
memberId
}
});
}
},
handleToTaskCenter
(
id
)
{
this
.
$confirm
(
`请去【系统】-【操作任务】-【任务中心】查看处理结果和执行进度`
,
`任务发起成功`
,
{
type
:
"success"
,
confirmButtonText
:
"去任务中心"
,
cancelButtonText
:
"取消"
,
showClose
:
false
,
}
).
then
(()
=>
{
this
.
loadData
();
window
.
open
(
`/gic-web/#/taskDetail/
${
id
}
`
);
}).
catch
(()
=>
{
this
.
loadData
();
});
},
}
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment