Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mes
mes-ui
Commits
ee74ca5e
Commit
ee74ca5e
authored
Oct 29, 2024
by
chenzj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
包装标签新增一个单位类型选项
parent
5fca79f4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
index.vue
src/views/mes/pro/packageLablePrint/index.vue
+15
-1
No files found.
src/views/mes/pro/packageLablePrint/index.vue
View file @
ee74ca5e
...
...
@@ -146,6 +146,18 @@
/>
</el-form-item>
</el-col>
<el-col
:span=
"8"
>
<el-form-item
label=
"单位类型:"
prop=
"materialsType"
>
<el-select
v-model=
"materialsType"
>
<el-option
v-for=
"dict in dict.type.pro_materials_type"
:key=
"dict.value"
:label=
"dict.label"
:value=
"dict.value"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col
:span=
"12"
>
...
...
@@ -343,7 +355,7 @@ import { postBatchPrintPdf } from '@/utils/ruoyi'
export
default
{
name
:
'packageLablePrint'
,
components
:
{
templatePrint
},
dicts
:
[
'mes_package_type'
],
dicts
:
[
'mes_package_type'
,
'pro_materials_type'
],
data
()
{
return
{
// 查询参数
...
...
@@ -369,6 +381,7 @@ export default {
inputTime
:
''
,
encasementNum
:
''
,
},
materialsType
:
'0'
,
loadingPackage
:
false
,
queryPackageParams
:
{
pageNum
:
1
,
...
...
@@ -479,6 +492,7 @@ export default {
forms
.
append
(
'workorderId'
,
this
.
produceForm
.
workorderId
)
this
.
selectPackageTable
.
forEach
((
item
)
=>
{
forms
.
append
(
'recordIds'
,
item
.
recordId
)
forms
.
append
(
'materialsType'
,
this
.
materialsType
)
})
packagePrintRecordInfo
(
forms
).
then
((
response
)
=>
{
console
.
log
(
response
,
'response'
)
...
...
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