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
7c9aed85
Commit
7c9aed85
authored
Nov 28, 2025
by
linjinhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:修改问题
parent
1bdbbed5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
18 deletions
+28
-18
src/views/order/podUs/index.vue
+28
-18
No files found.
src/views/order/podUs/index.vue
View file @
7c9aed85
...
...
@@ -836,14 +836,12 @@
</span>
</ElFormItem>
<ElFormItem
v-if=
"status === 'WAIT_SHIPMENT'"
>
<span
class=
"item"
>
<span
class=
"item"
>
<ElButton
type=
"warning"
@
click=
"showPrintSku"
>
打印库存sku标签
</ElButton
>
打印库存sku标签
</ElButton
>
</span>
</ElFormItem>
</ElForm>
</div>
<div
class=
"header-filter-tab"
>
...
...
@@ -1793,7 +1791,7 @@
underline
=
"never"
type
=
"success"
@
click
=
"uploadFile(row)"
>
上传
PRN
<
/el-lin
k
>
上传
PRN
<
/el-lin
k
>
<
el
-
icon
v
-
if
=
"row.isUpload"
...
...
@@ -1809,12 +1807,12 @@
:
title
=
"fileName(row)"
type
=
"success"
@
click
=
"downloadRowProFile(row)"
>
下载
PRN
>
下载
PRN
<
/el-link
>
<
el
-
icon
v
-
if
=
"row.prnDownloadStatus"
class
=
"download-icon"
style
=
"position:
relative;
right: 7px"
style
=
"position:
relative;
right: 7px"
>
<
CircleCheckFilled
/>
<
/el-icon
>
...
...
@@ -1856,7 +1854,6 @@
/><
/el-icon
>
<
/span
>
<
span
class
=
"operate-item"
>
<
ElButton
:
disabled
=
"!row.url && !row.tiffUrl"
link
...
...
@@ -1866,7 +1863,7 @@
下载素材
<
/ElButton
>
<
el
-
icon
v
-
if
=
"row.downloadStatus"
class
=
"download-icon"
><
CircleCheckFilled
><
CircleCheckFilled
/><
/el-icon
>
<
/span
>
<
span
class
=
"operate-item"
>
...
...
@@ -3137,13 +3134,15 @@ const updateTrackingNumber = async (row: PodUsOrderListData) => {
}
const
showPrintSku
=
async
()
=>
{
if
(
!
selection
.
value
.
length
)
{
if
(
!
selection
.
value
.
length
)
{
return
ElMessage
.
warning
(
'请选择数据'
)
}
await
printWarehouseSkuDialogRef
.
value
?.
open
(
2
,
selection
.
value
.
map
((
item
)
=>
item
.
id
).
join
(
','
))
await
printWarehouseSkuDialogRef
.
value
?.
open
(
2
,
selection
.
value
.
map
((
item
)
=>
item
.
id
).
join
(
','
),
)
}
const
exportData
=
()
=>
{
exportVisible
.
value
=
true
}
...
...
@@ -4212,11 +4211,15 @@ const uploadFile = (row: PodUsOrderListData) => {
input
.
onchange
=
async
function
()
{
try
{
if
(
input
.
files
&&
input
.
files
.
length
)
{
if
(
!
input
.
files
[
0
].
name
.
startsWith
(
row
.
batchArrangeNumber
||
''
))
{
await
ElMessageBox
.
confirm
(
`文件名不是以批次号开头是否继续上传?`
,
'提示'
,
{
confirmButtonText
:
'确定'
,
type
:
'warning'
,
}
)
if
(
!
input
.
files
[
0
].
name
.
startsWith
(
row
.
batchArrangeNumber
||
''
))
{
await
ElMessageBox
.
confirm
(
`文件名不是以批次号开头是否继续上传?`
,
'提示'
,
{
confirmButtonText
:
'确定'
,
type
:
'warning'
,
}
,
)
}
row
.
isUpload
=
true
uploadList
.
value
.
push
(
row
)
...
...
@@ -4957,6 +4960,13 @@ const downloadMaterial = async () => {
const
res
=
await
downloadMaterialApi
(
selectedIds
)
if
(
res
.
code
!==
200
)
return
window
.
open
(
filePath
+
res
.
message
)
const
a
=
document
.
createElement
(
'a'
)
a
.
href
=
filePath
+
res
.
message
a
.
download
=
res
.
message
!
a
.
target
=
'_blank'
document
.
body
.
appendChild
(
a
)
a
.
click
()
document
.
body
.
removeChild
(
a
)
}
catch
(
e
)
{
// showError(e)
console
.
error
(
e
)
...
...
@@ -6949,7 +6959,7 @@ const printNormal = async () => {
.
operate
-
item
{
position
:
relative
;
}
.
download
-
icon
{
.
download
-
icon
{
color
:
var
(
--
el
-
color
-
success
);
}
.
check
-
icon
{
...
...
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