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
a8e7526d
Commit
a8e7526d
authored
Dec 03, 2025
by
sunyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
排单
parent
765d38a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
2 deletions
+28
-2
src/views/order/podCN/index.vue
+28
-2
No files found.
src/views/order/podCN/index.vue
View file @
a8e7526d
...
...
@@ -2686,7 +2686,7 @@
><
/ChangeWayDialog
>
<
print
-
warehouse
-
sku
-
tag
ref
=
"printWarehouseSkuDialogRef"
/>
<
/template
>
<
script
setup
lang
=
"ts"
>
<
script
setup
lang
=
"ts
x
"
>
import
{
getUserMarkList
}
from
'@/api/common'
import
LogisticsWaySelect
from
'../../logistics/components/LogisticsWaySelect.tsx'
import
PrintWarehouseSkuTag
from
'../components/printWarehouseSkuTag.vue'
...
...
@@ -3629,6 +3629,28 @@ const tableColumns = computed(() => {
width
:
150
,
prop
:
'craftType'
,
align
:
'center'
,
render
:
(
item
:
ProductList
)
=>
{
if
(
!
item
.
craftType
)
{
return
(
<
div
>
<
span
>-<
/span
>
<
/div
>
)
}
// 分割字符串并查找对应的 label
const
labels
=
item
.
craftType
.
split
(
','
)
.
map
(
type
=>
type
.
trim
())
.
map
(
type
=>
processType
.
value
.
find
(
e
=>
e
.
value
===
type
)?.
label
||
type
)
.
filter
(
Boolean
)
return
(
<
div
>
<
span
>
{
labels
.
join
(
','
)
}
<
/span
>
<
/div
>
)
}
}
,
{
label
:
'失败原因'
,
...
...
@@ -5245,7 +5267,11 @@ const loadWarehouseList = async () => {
console
.
error
(
e
)
}
}
const
processType
=
ref
([
interface
ProcessTypeData
{
label
:
string
value
:
string
}
const
processType
=
ref
<
ProcessTypeData
[]
>
([
{
label
:
'烫画'
,
value
:
'TH'
,
...
...
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