Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
electron-printer
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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhuzhequan
electron-printer
Commits
95baa638
Commit
95baa638
authored
Jul 22, 2026
by
qinjianhui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: 问题修改
parent
39ab486f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
src/views/dtf-batch-detail/detail.vue
+1
-1
src/views/dtf-list/index.vue
+3
-4
No files found.
src/views/dtf-batch-detail/detail.vue
View file @
95baa638
...
...
@@ -218,7 +218,7 @@ export default {
const
selectedSet
=
new
Set
(
this
.
selection
);
this
.
podOrderProductIds
=
this
.
cardList
.
filter
(
card
=>
selectedSet
.
has
(
card
.
id
))
.
map
(
card
=>
card
.
podOrderProductI
d
);
.
map
(
card
=>
card
.
i
d
);
},
isSelected
(
item
)
{
return
this
.
selection
.
includes
(
item
.
id
);
...
...
src/views/dtf-list/index.vue
View file @
95baa638
...
...
@@ -290,14 +290,13 @@ export default {
batchArrangeNum
:
taskId
,
templateId
:
templateId
,
step
:
"composing"
,
progress
:
"
正在检查排版状态
..."
,
progress
:
"
排版处理中,等待完成后自动下载
..."
,
dismissTimer
:
null
};
this
.
composingTasks
=
this
.
composingTasks
.
filter
(
t
=>
t
.
id
!==
taskId
);
this
.
composingTasks
.
push
(
task
);
const
batch
=
await
this
.
fetchBatchByNo
(
taskId
);
this
.
checkTaskStatus
(
task
,
batch
);
this
.
ensureComposingPoll
();
this
.
fetchBatchList
(
this
.
searchForm
);
},
...
...
@@ -322,7 +321,7 @@ export default {
this
.
doComposingDownload
(
task
.
id
);
}
else
if
(
batch
&&
batch
.
layoutStatus
===
4
)
{
task
.
step
=
"error"
;
task
.
progress
=
"排版失败:"
+
(
batch
.
failReason
||
"未知原因"
);
task
.
progress
=
"排版失败:"
+
(
batch
?
.
failReason
||
"未知原因"
);
}
else
{
task
.
progress
=
"排版处理中,等待完成后自动下载..."
;
this
.
ensureComposingPoll
();
...
...
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