Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
factory_front
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
qinjianhui
factory_front
Commits
f93f0317
Commit
f93f0317
authored
Jun 26, 2025
by
wusiyi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: podus待排单字段显示修改
parent
c2b3c106
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
src/views/order/podUs/index.vue
+10
-6
No files found.
src/views/order/podUs/index.vue
View file @
f93f0317
...
...
@@ -1087,7 +1087,9 @@
<
div
:
style
=
"{
visibility:
status === 'IN_PRODUCTION' || status === 'PICKING'
status === 'IN_PRODUCTION' ||
status === 'PICKING' ||
status === 'TO_BE_ARRANGE'
? 'visible'
: 'hidden',
}
"
...
...
@@ -1108,7 +1110,7 @@
{{
cardItem
?.
baseSku
}}
<
/span
>
<
/div
>
<
div
class
=
"grid-item"
>
<
div
v
-
if
=
"status !== 'TO_BE_ARRANGE'"
class
=
"grid-item"
>
<
span
class
=
"grid-item-label"
>
补胚数量:
<
/span
>
<
span
class
=
"grid-item-value"
>
{{
cardItem
?.
replenishmentNum
||
0
}}
...
...
@@ -2236,7 +2238,7 @@ const downloadTif = async (type: string) => {
tifDownloadLoading
.
value
=
false
}
else
{
fetch
(
url
)
.
then
(
response
=>
{
.
then
(
(
response
)
=>
{
// 确保响应是 OK
if
(
!
response
.
ok
)
{
throw
new
Error
(
'网络响应错误'
)
...
...
@@ -2244,15 +2246,17 @@ const downloadTif = async (type: string) => {
// 返回图片的二进制数据(Blob)
return
response
.
blob
()
}
)
.
then
(
blob
=>
{
.
then
(
(
blob
)
=>
{
const
a
=
document
.
createElement
(
'a'
)
a
.
href
=
window
.
URL
.
createObjectURL
(
blob
)
a
.
target
=
'_blank'
a
.
download
=
(
res
.
message
as
string
).
split
(
'/'
)[
(
res
.
message
as
string
).
split
(
'/'
).
length
-
1
]
a
.
download
=
(
res
.
message
as
string
).
split
(
'/'
)[
(
res
.
message
as
string
).
split
(
'/'
).
length
-
1
]
a
.
click
()
pngDownloadLoading
.
value
=
false
}
)
.
catch
(
error
=>
{
.
catch
(
(
error
)
=>
{
console
.
error
(
'下载图片时出错:'
,
error
)
pngDownloadLoading
.
value
=
false
}
)
...
...
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