Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
cloudSystem
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
dcd8fa9a
authored
Apr 30, 2026
by
gyt
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix(createConsignmentRecallOrder): 导入数据取值修改
parent
6071308f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
src/views/consignmentManagement/createConsignmentRecallOrder.vue
src/views/consignmentManagement/createConsignmentRecallOrder.vue
View file @
dcd8fa9a
...
...
@@ -450,12 +450,13 @@
handleUploadSuccess
(
res
)
{
this
.
uploadLoading
=
false
;
if
(
res
.
code
===
0
)
{
var
{
success_total
=
0
,
fail_total
=
0
,
fail_list
}
=
res
.
data
||
{};
var
{
success_total
=
0
,
fail_total
=
0
,
fail_list
,
success_list
}
=
res
.
data
||
{};
var
failMsg
=
''
if
(
fail_list
.
length
){
failMsg
+=
`失败原因:\n`
;
failMsg
=
fail_list
.
map
(
item
=>
item
.
remark
).
join
(
';\n'
);
}
this
.
recall_json
=
success_list
this
.
$message
.
success
(
`导入完成,成功
${
success_total
}
条,失败
${
fail_total
}
条`
);
failMsg
&&
this
.
$alert
(
failMsg
);
this
.
getData
();
...
...
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