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
a34b2e99
Commit
a34b2e99
authored
Dec 03, 2025
by
wuqian
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev_arrange' of
http://47.122.114.111:9999/qinjianhui/factory_front
into dev_track
parents
f144e610
765d38a0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
5 deletions
+22
-5
src/views/order/podUs/index.vue
+22
-5
No files found.
src/views/order/podUs/index.vue
View file @
a34b2e99
...
...
@@ -3741,11 +3741,28 @@ const tableColumns = computed(() => {
width
:
150
,
prop
:
'craftType'
,
align
:
'center'
,
render
:
(
item
:
ProductList
)
=>
(
<
div
>
<
span
>
{
processType
.
value
.
find
((
e
)
=>
e
.
value
===
item
.
craftType
)?.
label
}
<
/span
>
<
/div
>
)
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
>
)
}
}
,
{
...
...
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