Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Releases
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-ui
Commits
fc72b872
Commit
fc72b872
authored
Apr 26, 2020
by
renjintao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
排产顺序
parent
4006cb5c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
5 deletions
+36
-5
opration.vue
components/page/opration.vue
+2
-1
index.vue
pages/aps/plan/index.vue
+3
-3
speed.vue
pages/order/monitoring/speed.vue
+31
-1
No files found.
components/page/opration.vue
View file @
fc72b872
...
...
@@ -29,7 +29,8 @@ export default {
default
:
"text"
},
title
:
{
type
:
String
type
:
String
,
default
:
'确定'
},
msg
:
{
type
:
String
,
...
...
pages/aps/plan/index.vue
View file @
fc72b872
...
...
@@ -84,9 +84,9 @@
<h4>
请选择排产模型:
</h4>
<RadioGroup
v-model=
"scheduleType"
class=
"radioList"
@
on-change=
"onchangeScheduleType"
>
<Radio
label=
"1"
border
>
APS排产
</Radio>
<Radio
label=
"
2
"
border
>
智能排产
</Radio>
<Radio
label=
"
3
"
border
>
整机排产
</Radio>
<Radio
label=
"
4
"
border
>
流水排产
</Radio>
<Radio
label=
"
4
"
border
>
智能排产
</Radio>
<Radio
label=
"
2
"
border
>
整机排产
</Radio>
<Radio
label=
"
3
"
border
>
流水排产
</Radio>
</RadioGroup>
<p
class=
"pl30 pt10"
v-show=
"scheduleType!=''"
>
...
...
pages/order/monitoring/speed.vue
View file @
fc72b872
...
...
@@ -6,6 +6,24 @@
<div
v-show=
"!load"
>
<DataGrid
:columns=
"columns"
:data=
"result"
border
:tool=
"false"
:height=
"820"
:page=
"false"
></DataGrid>
</div>
<Modal
v-model=
"modalSplit"
title=
"订单分卡"
width=
"800"
>
<Form
model=
"entity"
label-width=
"100"
>
<Row
>
<Col
span=
"24"
>
<FormItem
label=
"选择序列号"
></FormItem>
</Col>
<Col
span=
"24"
>
<FormItem
label=
"选择分卡原因"
></FormItem>
</Col>
<Col
span=
"24"
>
<FormItem
label=
"备注说明"
></FormItem>
</Col>
<Col
span=
"24"
>
<FormItem
label=
"选择序列号"
></FormItem>
</Col>
</Row>
</Form>
</Modal>
</div>
</
template
>
<
script
>
...
...
@@ -16,6 +34,8 @@ export default {
data
()
{
return
{
modalSplit
:
false
,
entity
:{},
columns
:
[
{
key
:
"detailId"
,
...
...
@@ -144,7 +164,7 @@ export default {
"op"
,
{
attrs
:
{
oprate
:
"edit"
},
style
:
params
.
row
.
status
==
5
?
""
:
"display:none"
,
style
:
params
.
row
.
status
==
12
?
""
:
"display:none"
,
on
:
{
click
:
()
=>
this
.
split
(
params
.
row
)
},
},
"分卡"
...
...
@@ -174,6 +194,16 @@ export default {
},
created
()
{},
methods
:
{
split
(
row
){
//工单分卡
alert
(
JSON
.
stringify
(
row
))
this
.
modalSplit
=
true
},
pause
(
row
){
//暂停工单
alert
(
JSON
.
stringify
(
row
))
},
continue
(
row
){
//继续工单
alert
(
JSON
.
stringify
(
row
))
},
//截取字符串
sliceStr
(
str
,
lenS
,
lenE
)
{
return
str
.
slice
(
lenS
,
lenE
);
...
...
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