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
80081a25
Commit
80081a25
authored
Jul 31, 2025
by
沈翠玲
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加雇员数量
parent
764da0c8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
92 additions
and
105 deletions
+92
-105
ProogingBom.vue
...ews/mes/pro/productionSolution/components/ProogingBom.vue
+1
-0
workunitSelectSche.vue
src/views/mes/pro/scheduleList/workunitSelectSche.vue
+3
-1
indexApply.vue
src/views/mes/pro/workorder/indexApply.vue
+4
-3
index.vue
src/views/mes/proTable/productProcess/index.vue
+1
-2
index.vue
src/views/mes/proTable/productSee/index.vue
+79
-97
index.vue
src/views/mes/proTable/supplementaryOrder/index.vue
+2
-2
workunitSelect.vue
src/views/system/user/profile/workunitSelect.vue
+2
-0
No files found.
src/views/mes/pro/productionSolution/components/ProogingBom.vue
View file @
80081a25
...
...
@@ -62,6 +62,7 @@
/>
</
template
>
</el-table-column>
<el-table-column
label=
"雇员数量"
align=
"center"
prop=
"employeesNum"
/>
<el-table-column
label=
"标准用量"
align=
"center"
prop=
"quantity"
/>
<el-table-column
label=
"基本用量"
align=
"center"
prop=
"basicQuantity"
/>
<el-table-column
label=
"BOM行备注"
align=
"center"
prop=
"bomItemRemark"
/>
...
...
src/views/mes/pro/scheduleList/workunitSelectSche.vue
View file @
80081a25
...
...
@@ -17,6 +17,7 @@
<el-form-item
label=
"工作单元编码"
prop=
"workunitCode"
>
<el-input
v-model=
"queryParams.workunitCode"
disabled
placeholder=
"请输入工单编码"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
...
...
@@ -25,13 +26,14 @@
<el-form-item
label=
"工作单元名称"
prop=
"workunitName"
>
<el-input
v-model=
"queryParams.workunitName"
disabled
placeholder=
"请输入工作单元名称"
clearable
@
keyup
.
enter
.
native=
"handleQuery"
/>
</el-form-item>
<el-form-item
label=
"工作中心"
prop=
"workstationId"
>
<el-select
filterable
v-model=
"queryParams.workstationId"
placeholder=
"请选择工作中心"
clearable
@
change=
"getList"
>
<el-select
filterable
v-model=
"queryParams.workstationId"
disabled
placeholder=
"请选择工作中心"
clearable
@
change=
"getList"
>
<el-option
v-for=
"dict in workstationList"
:key=
"dict.workstationId"
...
...
src/views/mes/pro/workorder/indexApply.vue
View file @
80081a25
...
...
@@ -89,8 +89,8 @@
<el-date-picker
v-model=
"daterangePurchaseDate"
value-format=
"yyyy-MM-dd"
type=
"daterange"
range-separator=
"-"
start-placeholder=
"开始日期"
end-placeholder=
"结束日期"
></el-date-picker>
</el-form-item>
<el-form-item
label=
"排版状态"
prop=
"dtaAction"
>
<el-select
v-model=
"queryParams.dtaAction
"
placeholder=
"请选择排版状态"
clearab
le
>
<el-form-item
label=
"排版状态"
prop=
"dtaAction
s
"
>
<el-select
v-model=
"queryParams.dtaAction
s"
placeholder=
"请选择排版状态"
clearable
multip
le
>
<el-option
v-for=
"dict in dict.type.dta_action"
:key=
"dict.value"
:label=
"dict.label"
:value=
"dict.value"
></el-option>
</el-select>
...
...
@@ -822,7 +822,7 @@ export default {
pageSize
:
50
,
workorderCodes
:
null
,
arrangeCodes
:
null
,
dtaAction
:
null
,
dtaAction
s
:
[]
,
complate
:
null
,
workorderName
:
null
,
orderSource
:
null
,
...
...
@@ -1615,6 +1615,7 @@ export default {
params.workorderCodes = this.selectedRows.map(item => item.workorderCode)
}
params.statusArr = params.statusArr.length > 0 ? params.statusArr : null;
params.dtaActions = params.dtaActions.length > 0 ? params.dtaActions : null;
delete params.pageNum;
delete params.pageSize;
this.download1(
...
...
src/views/mes/proTable/productProcess/index.vue
View file @
80081a25
...
...
@@ -86,10 +86,9 @@
<
el
-
table
-
column
:
label
=
"'标准工时'"
align
=
"center"
prop
=
"stdWorkingTime"
><
/el-table-column
>
<
el
-
table
-
column
:
label
=
"'实际工时'"
align
=
"center"
prop
=
"machineTime"
>
<
template
slot
-
scope
=
"scope"
>
{{
scope
.
row
[
'machineTime'
]
?
Number
(
scope
.
row
[
'machineTime'
]).
toFixed
(
2
)
:
scope
.
row
[
'machineTime'
]
}}
{{
scope
.
row
[
'machineTime'
]
?
Number
(
scope
.
row
[
'machineTime'
]).
toFixed
(
3
)
:
scope
.
row
[
'machineTime'
]
}}
<
/template
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"'报工时间'"
align
=
"center"
prop
=
"feedbackTime"
><
/el-table-column
>
<
/el-table
>
<
/div
>
...
...
src/views/mes/proTable/productSee/index.vue
View file @
80081a25
This diff is collapsed.
Click to expand it.
src/views/mes/proTable/supplementaryOrder/index.vue
View file @
80081a25
...
...
@@ -59,7 +59,7 @@
<el-table-column
:label=
"item.label"
align=
"center"
:prop=
"item.value"
:width=
"item.width"
v-for=
"(item, index) in theaders"
:key=
"index"
>
<template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.mes_workorder_type"
:value=
"scope.row.workorderType"
v-if=
"item.value==='workorderType'"
/>
<div
v-else
>
{{
item
.
value
===
'machineTime'
?
scope
.
row
[
item
.
value
]
?
Number
(
scope
.
row
[
item
.
value
]).
toFixed
(
2
)
:
scope
.
row
[
item
.
value
]
:
scope
.
row
[
item
.
value
]
}}
</div>
<div
v-else
>
{{
item
.
value
===
'machineTime'
?
scope
.
row
[
item
.
value
]
?
Number
(
scope
.
row
[
item
.
value
]).
toFixed
(
3
)
:
scope
.
row
[
item
.
value
]
:
scope
.
row
[
item
.
value
]
}}
</div>
</
template
>
</el-table-column>
</el-table>
...
...
@@ -82,7 +82,7 @@
<el-table-column
:label=
"item.label"
align=
"center"
:prop=
"item.value"
v-for=
"(item, index) in theaders"
:key=
"index"
>
<
template
slot-scope=
"scope"
>
<dict-tag
:options=
"dict.type.mes_workorder_type"
:value=
"scope.row.workorderType"
v-if=
"item.value==='workorderType'"
/>
<div
v-else
>
{{
item
.
value
===
'machineTime'
?
scope
.
row
[
item
.
value
]
?
Number
(
scope
.
row
[
item
.
value
]).
toFixed
(
2
)
:
scope
.
row
[
item
.
value
]
:
scope
.
row
[
item
.
value
]
}}
</div>
<div
v-else
>
{{
item
.
value
===
'machineTime'
?
scope
.
row
[
item
.
value
]
?
Number
(
scope
.
row
[
item
.
value
]).
toFixed
(
3
)
:
scope
.
row
[
item
.
value
]
:
scope
.
row
[
item
.
value
]
}}
</div>
</
template
>
</el-table-column>
</el-table>
...
...
src/views/system/user/profile/workunitSelect.vue
View file @
80081a25
...
...
@@ -105,6 +105,8 @@ export default {
this
.
selectedRows
=
[]
this
.
queryParams
.
workstationName
=
this
.
workstationName
;
this
.
queryParams
.
workstationId
=
this
.
workstationId
;
this
.
queryParams
.
workunitName
=
''
this
.
queryParams
.
workunitCode
=
''
this
.
getList
();
},
immediate
:
true
...
...
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