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
74833485
Commit
74833485
authored
Apr 29, 2020
by
仇晓婷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
yo
parent
6dd28305
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
index.vue
pages/aps/complete/index.vue
+12
-2
No files found.
pages/aps/complete/index.vue
View file @
74833485
...
...
@@ -7,7 +7,7 @@
<RadioGroup
v-model=
"status"
type=
"button"
@
on-change=
"changeStatus"
size=
"small"
>
<Radio
label=
"0"
>
未排产
</Radio>
<Radio
label=
"2"
>
已排查
</Radio>
<
Radio
label=
"-1"
>
全部
</Radio
>
<
!--
<Radio
label=
"-1"
>
全部
</Radio>
--
>
</RadioGroup>
</Col>
</Row>
...
...
@@ -20,7 +20,11 @@
>
<Row
class=
"title-i"
>
<Col
:span=
"20"
class=
"order-code"
>
<Checkbox
v-model=
"li.checked"
@
on-change=
"checkData(li)"
>
订单号:
{{
li
.
mesCode
}}
</Checkbox>
<Checkbox
v-model=
"li.checked"
@
on-change=
"checkData(li)"
:disabled=
"isdisabled"
>
订单号:
{{
li
.
mesCode
}}
</Checkbox>
</Col>
<Col
:span=
"4"
class=
"order-ringht"
>
<Icon
type=
"md-close"
@
click=
"close(li.id)"
/>
...
...
@@ -132,6 +136,7 @@ export default {
return
{
list
:
[],
status
:
"0"
,
//全部排产-1,0为未排产;2为已排查;
isdisabled
:
false
,
formItem
:
{
radio
:
"0"
,
time
:
""
,
...
...
@@ -187,6 +192,11 @@ export default {
changeStatus
(
name
)
{
this
.
status
=
name
;
this
.
orderlist
(
this
.
status
);
if
(
this
.
status
==
1
)
{
this
.
isdisabled
=
true
;
}
else
{
this
.
isdisabled
=
false
;
}
},
//排产池列表
orderlist
(
a
)
{
...
...
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