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
3f32759f
Commit
3f32759f
authored
Apr 13, 2020
by
renjintao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mesplan
parent
fb72273f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
7 deletions
+14
-7
index.vue
pages/mesPlan/index.vue
+10
-4
send.vue
pages/mesPlan/send.vue
+4
-3
No files found.
pages/mesPlan/index.vue
View file @
3f32759f
...
...
@@ -700,7 +700,7 @@ export default {
statusList
:
[],
//状态类型
rowData
:
{},
//编辑、查看的当前行数据
ModalInfoStaut
:
""
,
sendList
:
[],
sendList
:
[]
};
},
created
()
{
...
...
@@ -853,8 +853,14 @@ export default {
this
.
ModalInfo
=
false
;
},
openSendModal
()
{
this
.
sendModal
=
true
;
this
.
rowData
=
sendList
;
alert
(
JSON
.
stringify
(
this
.
sendList
))
alert
(
this
.
sendList
.
length
)
if
(
this
.
senList
.
length
>
0
)
{
this
.
sendModal
=
true
;
this
.
rowData
=
this
.
sendList
;
}
else
{
this
.
$Message
.
error
(
"请选择订单"
);
}
},
remove
(
id
)
{
this
.
deletelModal
=
true
;
...
...
@@ -966,7 +972,7 @@ export default {
//批量选择
let
selectRows
=
a
;
this
.
arrPartPkId
=
[];
this
.
sendList
=
a
;
this
.
sendList
=
a
;
// selectRows.forEach(e => {
// this.arrPartPkId.push(e.part_task_pk);
// });
...
...
pages/mesPlan/send.vue
View file @
3f32759f
<
template
>
<div
style=
"width:100%;margin:0 auto"
:style=
"
{height:divHeight}">
<Detail
v-if=
"
info.status"
:info=
"info
"
></Detail>
<Detail
v-if=
"
row.length==1"
:info=
"row[0]
"
></Detail>
<Table
:loading=
"loading"
border
...
...
@@ -249,7 +249,8 @@ export default {
trigger
:
"change"
}
]
}
},
rowList
:[],
};
},
props
:
{
...
...
@@ -331,7 +332,7 @@ export default {
row
(
v
)
{
if
(
v
!=
[])
{
this
.
orderSearchForm
=
this
.
$u
.
clone
(
this
.
row
);
this
.
placeholdeinfo
=
this
.
orderSearchForm
.
productName
}
}
}
...
...
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