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
df50b8df
Commit
df50b8df
authored
Apr 26, 2020
by
renjintao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dictionary/plan
parent
3c69319e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
101 additions
and
282 deletions
+101
-282
dictionary.vue
components/page/dictionary.vue
+64
-62
index.vue
pages/aps/plan/index.vue
+1
-7
speed.vue
pages/order/monitoring/speed.vue
+36
-213
No files found.
components/page/dictionary.vue
View file @
df50b8df
<
template
>
<div>
<RadioGroup
v-if=
"type === 'radio'"
ref=
"dicradio"
v-model=
"name"
@
on-change=
"change"
:vertical=
"vertical"
>
<Radio
v-for=
"(item, index) in dic"
:disabled=
"item.disabled"
:label=
"item.value"
:key=
"index"
<div>
<RadioGroup
v-if=
"type === 'radio'"
ref=
"dicradio"
v-model=
"name"
@
on-change=
"change"
:vertical=
"vertical"
>
<Radio
v-for=
"(item, index) in dic"
:disabled=
"item.disabled"
:label=
"item.value"
:key=
"index"
:border=
"border"
>
<span
:title=
"item.value"
>
{{
item
.
label
}}
</span>
</Radio
>
</RadioGroup>
<span
:title=
"item.value"
>
{{
item
.
label
}}
</span>
</Radio
>
</RadioGroup>
<Select
v-else
:placeholder=
"placeholder"
v-model=
"name"
@
on-change=
"change"
:disabled=
"disabled"
:multiple=
"multiple"
clearable
:transfer=
"true"
>
<Option
v-for=
"(item, i) in dic"
:value=
"item.value"
:disabled=
"item.disabled"
:key=
"item.value"
:label=
"item.label"
v-else
:placeholder=
"placeholder"
v-model=
"name"
@
on-change=
"change"
:disabled=
"disabled"
:multiple=
"multiple"
clearable
:transfer=
"true"
>
<span
:title=
"item.value"
>
{{
item
.
label
}}
</span>
</Option>
</Select>
</div>
<Option
v-for=
"(item, i) in dic"
:value=
"item.value"
:disabled=
"item.disabled"
:key=
"item.value"
:label=
"item.label"
>
<span
:title=
"item.value"
>
{{
item
.
label
}}
</span>
</Option>
</Select>
</div>
</
template
>
<
script
>
export
default
{
model
:
{
prop
:
'value'
,
event
:
'on-change'
prop
:
"value"
,
event
:
"on-change"
},
props
:
{
code
:
String
,
value
:
[
String
,
Number
,
Array
],
placeholder
:
{
type
:
String
,
default
:
'请选择'
default
:
"请选择"
},
type
:
{
// 显示形式: select 或者radio
type
:
String
,
default
:
'Select'
default
:
"Select"
},
border
:
{
//radio可以选择border属性
type
:
Boolean
,
default
:
false
},
multiple
:
{
//是否多选
...
...
@@ -76,18 +79,17 @@ export default {
limit
:
{
//限制只在此值范围内进行选择,其它值禁用选择。
type
:
String
,
default
:
''
default
:
""
}
},
data
()
{
return
{
name
:
this
.
value
,
data
:
[]
}
}
;
},
created
()
{
this
.
data
=
this
.
$store
.
getters
.
dictionaryByKey
(
this
.
code
)
this
.
data
=
this
.
$store
.
getters
.
dictionaryByKey
(
this
.
code
);
},
mounted
()
{
// if(this.value==undefined||this.value==''||this.value==null)
...
...
@@ -102,49 +104,49 @@ export default {
// }
// this.name = v
},
methods
:
{
change
(
event
)
{
this
.
$emit
(
'on-change'
,
event
)
this
.
$emit
(
"on-change"
,
event
);
}
},
computed
:
{
dic
()
{
let
result
=
[]
let
limit
=
this
.
limit
.
split
(
','
)
this
.
data
.
forEach
(
(
u
)
=>
{
let
v
=
u
.
code
let
s
=
u
.
status
let
result
=
[]
;
let
limit
=
this
.
limit
.
split
(
","
);
this
.
data
.
forEach
(
u
=>
{
let
v
=
u
.
code
;
let
s
=
u
.
status
;
try
{
v
=
parseInt
(
u
.
code
)
v
=
parseInt
(
u
.
code
)
;
}
catch
(
err
)
{
console
.
warn
(
'数据字典值请设置为int'
)
console
.
warn
(
"数据字典值请设置为int"
);
}
var
disabled
=
this
.
disabled
//false
var
disabled
=
this
.
disabled
;
//false
if
(
!
this
.
disabled
&&
!
this
.
$u
.
isNull
(
this
.
limit
))
{
disabled
=
limit
.
indexOf
(
v
+
''
)
==
-
1
disabled
=
limit
.
indexOf
(
v
+
""
)
==
-
1
;
}
if
(
!
this
.
disabled
)
{
disabled
=
s
==
1
?
true
:
false
disabled
=
s
==
1
?
true
:
false
;
}
result
.
push
({
label
:
u
.
name
,
value
:
v
,
disabled
:
disabled
})
})
return
result
})
;
})
;
return
result
;
}
},
watch
:
{
value
:
{
handler
(
v
,
o
)
{
this
.
name
=
v
this
.
name
=
v
;
},
deep
:
true
}
}
}
}
;
</
script
>
<
style
lang=
"less"
>
.w200 {
...
...
pages/aps/plan/index.vue
View file @
df50b8df
...
...
@@ -82,13 +82,7 @@
<Modal
v-model=
"scheduleModal"
title=
"移入排产"
width=
"800"
>
<p>
</p>
<h4>
请选择排产模型:
</h4>
<RadioGroup
v-model=
"scheduleType"
class=
"radioList"
@
on-change=
"onchangeScheduleType"
>
<Radio
label=
"1"
border
>
APS排产
</Radio>
<Radio
label=
"4"
border
>
智能排产
</Radio>
<Radio
label=
"2"
border
>
整机排产
</Radio>
<Radio
label=
"3"
border
>
流水排产
</Radio>
</RadioGroup>
<Dictionary
code=
"aps.plan.scheduleType"
v-model=
"scheduleType"
class=
"radioList"
border=
"true"
type=
"radio"
@
on-change=
"onchangeScheduleType"
></Dictionary>
<p
class=
"pl30 pt10"
v-show=
"scheduleType!=''"
>
确定将订单
<span
class=
"fwBold"
>
{{resultsOrderList}}
</span>
移入
...
...
pages/order/monitoring/speed.vue
View file @
df50b8df
...
...
@@ -6,65 +6,23 @@
<div
v-show=
"!load"
>
<DataGrid
:columns=
"columns"
:data=
"result"
border
:tool=
"false"
:height=
"820"
:page=
"false"
></DataGrid>
</div>
<Modal
v-model=
"modalSplit"
title=
"订单分卡"
width=
"650"
footer-hide
>
<div
slot=
"close"
>
<Icon
type=
"ios-close"
size=
"31"
color=
"gray"
@
click=
"handleClose"
/>
</div>
<Form
:model=
"entity"
ref=
"form"
:label-width=
"110"
:rules=
"rules"
>
<Row>
<Col
span=
"24"
>
<FormItem
label=
"选择序列号"
prop=
"num"
>
<Select
v-model=
"entity.num"
multiple
>
<Option
v-for=
"(item,index) in numList"
:value=
"item.value"
:key=
"index"
>
{{
item
.
label
}}
</Option>
</Select>
</FormItem>
</Col>
<Col
span=
"24"
>
<FormItem
label=
"选择分卡原因"
prop=
"reason"
>
<Select
v-model=
"entity.reason"
style=
"width:260px"
>
<Option
v-for=
"(item,index) in reasonList"
:value=
"item.value"
:key=
"index"
>
{{
item
.
label
}}
</Option>
</Select>
</FormItem>
</Col>
<Col
span=
"24"
>
<FormItem
label=
"备注说明"
>
<Input
v-model=
"entity.remark"
placeholder
type=
"textarea"
:rows=
"3"
/>
</FormItem>
</Col>
<Col
span=
"14"
>
<FormItem
label
prop=
"action"
>
<RadioGroup
v-model=
"entity.action"
@
on-change=
"onchangeAction"
>
<Radio
:label=
"1"
>
暂停
</Radio>
<Radio
:label=
"2"
>
继续
</Radio>
<Radio
:label=
"3"
>
移入排产
</Radio>
</RadioGroup>
</FormItem>
</Col>
<Col
span=
"10"
v-if=
"entity.action===3"
>
<FormItem
label
prop=
"scheduleType"
>
<Dictionary
code=
"aps.plan.scheduleType"
v-model=
"entity.scheduleType"
class=
"scheduleTypeSelect"
></Dictionary>
</FormItem>
</Col>
</Row>
</Form>
<Row>
<Col
span=
"24"
style=
"text-align:right;height:60px;line-height:60px"
>
<Button
type=
"primary"
@
click=
"splitOk"
>
确定
</Button>
<Button
@
click=
"handleClose"
class=
"ml20"
>
取消
</Button>
</Col>
</Row>
<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
>
...
...
@@ -76,14 +34,8 @@ export default {
data
()
{
return
{
modalSplit
:
false
,
entity
:
{
num
:
[],
//序列号组合
reason
:
null
,
//分卡原因
remark
:
""
,
//备注信息
action
:
null
,
//操作
scheduleType
:
null
//排产类型
},
modalSplit
:
false
,
entity
:{},
columns
:
[
{
key
:
"detailId"
,
...
...
@@ -202,35 +154,27 @@ export default {
h
(
"op"
,
{
props
:
{
oprate
:
"delete"
,
title
:
"暂停"
,
msg
:
"确定暂停工序:"
+
params
.
row
.
detailName
+
"?"
},
props
:
{
oprate
:
"delete"
,
title
:
"操作信息"
,
msg
:
"确定暂停工序:"
+
params
.
row
.
detailName
+
"?"
},
style
:
params
.
row
.
status
==
14
?
""
:
"display:none"
,
on
:
{
click
:
()
=>
this
.
pause
(
params
.
row
)
}
on
:
{
click
:
()
=>
this
.
pause
(
params
.
row
)
}
,
},
"暂停"
),
h
(
"op"
,
{
props
:
{
oprate
:
"edit"
,
title
:
"分卡
"
},
attrs
:
{
oprate
:
"edit
"
},
style
:
params
.
row
.
status
==
12
?
""
:
"display:none"
,
on
:
{
click
:
()
=>
this
.
split
(
params
.
row
)
}
on
:
{
click
:
()
=>
this
.
split
(
params
.
row
)
}
,
},
"分卡"
),
h
(
h
(
"op"
,
{
props
:
{
oprate
:
"delete"
,
title
:
"继续"
,
msg
:
"确定继续执行工序:"
+
params
.
row
.
detailName
+
"?"
},
style
:
params
.
row
.
status
==
5
?
""
:
"display:none"
,
on
:
{
click
:
()
=>
this
.
continue
(
params
.
row
)
}
props
:
{
oprate
:
"delete"
,
msg
:
"确定继续执行工序:"
+
params
.
row
.
detailName
+
"?"
},
style
:
params
.
row
.
status
==
5
?
""
:
"display:none"
,
on
:
{
click
:
()
=>
this
.
continue
(
params
.
row
)
},
},
"继续"
)
...
...
@@ -239,139 +183,26 @@ export default {
}
],
listTask
:
[],
numList
:
[
{
value
:
1
,
label
:
"SKJC-001"
},
{
value
:
2
,
label
:
"SKJC-002"
},
{
value
:
3
,
label
:
"SKJC-003"
},
{
value
:
4
,
label
:
"SKJC-004"
},
{
value
:
5
,
label
:
"SKJC-005"
},
{
value
:
6
,
label
:
"SKJC-006"
}
],
reasonList
:
[
{
value
:
1
,
label
:
"分卡原因1"
},
{
value
:
2
,
label
:
"分卡原因2"
},
{
value
:
3
,
label
:
"分卡原因3"
}
],
rules
:
{
num
:
[
{
required
:
true
,
message
:
"请选择分卡原因"
,
trigger
:
"change"
,
type
:
"array"
}
],
reason
:
[
{
required
:
true
,
message
:
"请选择分卡原因"
,
trigger
:
"change"
,
type
:
"number"
}
],
action
:
[
{
required
:
true
,
message
:
"请选择操作"
,
trigger
:
"change"
,
type
:
"number"
}
],
scheduleType
:
[
{
required
:
true
,
message
:
"请选择排产类型"
,
trigger
:
"change"
,
type
:
"number"
}
]
}
};
},
props
:
{
result
:
Array
,
load
:
Boolean
load
:
Boolean
,
},
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
},
created
()
{},
methods
:
{
split
(
row
)
{
//工单分卡
this
.
modalSplit
=
true
;
split
(
row
)
{
//工单分卡
alert
(
JSON
.
stringify
(
row
))
this
.
modalSplit
=
true
},
onchangeAction
(
val
)
{
if
(
val
!=
3
)
{
this
.
entity
.
scheduleType
=
null
;
}
},
splitOk
()
{
//确定分卡
this
.
$refs
.
form
.
validate
(
valid
=>
{
if
(
valid
)
{
let
params
=
{
num
:
this
.
entity
.
num
,
reason
:
this
.
entity
.
reason
,
remark
:
this
.
entity
.
remark
,
action
:
this
.
entity
.
action
,
scheduleType
:
this
.
entity
.
scheduleType
};
alert
(
JSON
.
stringify
(
params
));
this
.
handleClose
();
}
else
{
this
.
modalSplit
=
true
;
}
});
pause
(
row
){
//暂停工单
alert
(
JSON
.
stringify
(
row
))
},
handleClose
()
{
//取消分卡
this
.
entityReset
();
this
.
modalSplit
=
false
;
},
entityReset
()
{
this
.
entity
=
{
num
:
[],
reason
:
null
,
remark
:
""
,
action
:
null
,
scheduleType
:
null
};
},
pause
(
row
)
{
//暂停工单
alert
(
JSON
.
stringify
(
row
));
},
continue
(
row
)
{
//继续工单
alert
(
JSON
.
stringify
(
row
));
continue
(
row
){
//继续工单
alert
(
JSON
.
stringify
(
row
))
},
//截取字符串
sliceStr
(
str
,
lenS
,
lenE
)
{
...
...
@@ -403,13 +234,5 @@ export default {
}
};
</
script
>
<
style
lang=
'less'
scope
>
.scheduleTypeSelect {
display: inline;
width: 180px;
margin-left: -110px;
.ivu-select {
width: 180px;
}
}
<
style
lang=
'less'
>
</
style
>
\ No newline at end of file
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