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
ee4accd3
Commit
ee4accd3
authored
Apr 18, 2025
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
生产工单增加是否急单
parent
cb54bac2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
indexApply.vue
src/views/mes/pro/workorder/indexApply.vue
+13
-1
No files found.
src/views/mes/pro/workorder/indexApply.vue
View file @
ee4accd3
...
@@ -16,6 +16,12 @@
...
@@ -16,6 +16,12 @@
</el-option>
</el-option>
</el-select>
</el-select>
</el-form-item>
</el-form-item>
<el-form-item
label=
"是否急单"
prop=
"rushOrder"
>
<el-select
v-model=
"queryParams.rushOrder"
placeholder=
"请选择是否急单"
clearable
>
<el-option
v-for=
"dict in dict.type.rush_order"
:key=
"dict.value"
:label=
"dict.label"
:value=
"dict.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"工单编码"
prop=
"workorderCodes"
>
<el-form-item
label=
"工单编码"
prop=
"workorderCodes"
>
<el-input
v-model=
"queryParams.workorderCodes"
placeholder=
"请输入工单编码"
clearable
type=
"textarea"
:rows=
"2"
<el-input
v-model=
"queryParams.workorderCodes"
placeholder=
"请输入工单编码"
clearable
type=
"textarea"
:rows=
"2"
resize=
"none"
@
keyup
.
enter
.
native=
"handleQuery"
/>
resize=
"none"
@
keyup
.
enter
.
native=
"handleQuery"
/>
...
@@ -240,7 +246,11 @@
...
@@ -240,7 +246,11 @@
</el-button>
</el-button>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
label=
"是否急单"
align=
"center"
prop=
"rushOrder"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.rush_order"
:value=
"scope.row.rushOrder"
/>
</
template
>
</el-table-column>
<el-table-column
label=
"单据状态"
align=
"center"
prop=
"status"
>
<el-table-column
label=
"单据状态"
align=
"center"
prop=
"status"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.mes_workorder_status"
:value=
"scope.row.status"
/>
<dict-tag
:options=
"dict.type.mes_workorder_status"
:value=
"scope.row.status"
/>
...
@@ -667,6 +677,7 @@ export default {
...
@@ -667,6 +677,7 @@ export default {
name
:
"Workorder"
,
name
:
"Workorder"
,
dicts
:
[
dicts
:
[
"mes_workorder_status"
,
"mes_workorder_status"
,
"rush_order"
,
"mes_workorder_sourcetype"
,
"mes_workorder_sourcetype"
,
"mes_workorder_type"
,
"mes_workorder_type"
,
],
],
...
@@ -796,6 +807,7 @@ export default {
...
@@ -796,6 +807,7 @@ export default {
parentId
:
null
,
parentId
:
null
,
ancestors
:
null
,
ancestors
:
null
,
statusArr
:
[
"PREPARE"
,
"PUBLISHED"
],
statusArr
:
[
"PREPARE"
,
"PUBLISHED"
],
rushOrder
:
null
}
,
}
,
// 表单参数
// 表单参数
form
:
{
}
,
form
:
{
}
,
...
...
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