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
2e5ae693
Commit
2e5ae693
authored
Dec 03, 2025
by
sunyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
列表工艺类型取中文
parent
f14854e6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
28 deletions
+38
-28
src/views/order/podUs/index.vue
+38
-28
No files found.
src/views/order/podUs/index.vue
View file @
2e5ae693
...
...
@@ -3044,7 +3044,7 @@
:
uploadList
=
"uploadList"
><
/uploadBox
>
<
/template
>
<
script
setup
lang
=
"ts"
>
<
script
setup
lang
=
"ts
x
"
>
import
LogisticsWaySelect
from
'../../logistics/components/LogisticsWaySelect.tsx'
import
{
getUserMarkList
}
from
'@/api/common'
// import
{
AnyObject
}
from
'@/types/api/warehouse'
...
...
@@ -3161,7 +3161,7 @@ import {
CircleCheckFilled
,
}
from
'@element-plus/icons-vue'
import
{
Column
,
ElFormItem
,
ElMessage
}
from
'element-plus'
import
{
computed
,
onMounted
,
ref
,
nextTick
,
reactive
}
from
'vue'
import
{
computed
,
onMounted
,
ref
,
nextTick
,
reactive
,
render
}
from
'vue'
import
FastProduction
from
'./FastProduction.vue'
import
{
filePath
}
from
'@/api/axios'
import
PodMakeOrder
from
'./PodMakeOrder.vue'
...
...
@@ -3671,6 +3671,36 @@ const handleReComposingDesign = async () => {
typesettingRow
.
value
=
undefined
}
}
interface
ProcessTypeData
{
label
:
string
value
:
string
}
const
processType
=
ref
<
ProcessTypeData
[]
>
([
{
label
:
'烫画'
,
value
:
'TH'
,
}
,
{
label
:
'直喷'
,
value
:
'ZP'
,
}
,
{
label
:
'刺绣'
,
value
:
'CX'
,
}
,
{
label
:
'雕刻'
,
value
:
'DK'
,
}
,
{
label
:
'白胚'
,
value
:
'BP'
,
}
,
{
label
:
'其他'
,
value
:
'QT'
,
}
,
])
const
tableColumns
=
computed
(()
=>
{
let
arr
=
[]
if
(
status
.
value
===
'BATCH_DOWNLOAD'
)
{
...
...
@@ -3711,6 +3741,11 @@ 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
>
)
}
,
{
...
...
@@ -6023,32 +6058,7 @@ const loadWarehouseList = async () => {
console
.
error
(
e
)
}
}
const
processType
=
ref
([
{
label
:
'烫画'
,
value
:
'TH'
,
}
,
{
label
:
'直喷'
,
value
:
'ZP'
,
}
,
{
label
:
'刺绣'
,
value
:
'CX'
,
}
,
{
label
:
'雕刻'
,
value
:
'DK'
,
}
,
{
label
:
'白胚'
,
value
:
'BP'
,
}
,
{
label
:
'其他'
,
value
:
'QT'
,
}
,
])
// 获取工艺列表
const
craftList
=
ref
<
IAllList
[]
>
([])
...
...
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