Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
cloudSystem
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
be254514
authored
Sep 28, 2022
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
订单追踪/已采购订单:新增发货单报错
parent
b00e3e11
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
src/App.vue
src/views/OrderTrack/purAdd.vue
src/App.vue
View file @
be254514
<
template
>
<div
id=
"app"
>
<keep-alive
exclude=
"InquireDetail,ListDetail,orderTrackGoodsDetail"
>
<keep-alive
exclude=
"InquireDetail,ListDetail,orderTrackGoodsDetail
,orderTrackPurAdd
"
>
<router-view
class=
"router-view"
></router-view>
</keep-alive>
</div>
...
...
src/views/OrderTrack/purAdd.vue
View file @
be254514
<
template
>
<section
class=
"goods pagex"
>
<div
class=
"goods-con"
>
<el-form
:inline=
"true"
:model=
"formParam"
label-width=
"95px"
ref=
"ruleForm"
>
<el-form
:inline=
"true"
:model=
"formParam"
label-width=
"95px"
ref=
"ruleForm"
>
<el-form-item>
<el-button
type=
"primary"
@
click=
"submit('ruleForm')"
>
提交
</el-button>
<el-button
@
click=
"canel"
>
取消
</el-button>
...
...
@@ -139,11 +139,12 @@ export default {
});
return
false
;
}
let
filterArr
=
[];
for
(
let
i
=
0
;
i
<
this
.
multipleSelection
.
length
;
i
++
)
{
if
(
this
.
multipleSelection
[
i
].
purchase_item_id
==
this
.
itemlist
[
i
].
purchase_item_id
)
{
filterArr
.
push
(
this
.
itemlist
[
i
])
for
(
let
i
=
0
;
i
<
this
.
itemlist
.
length
;
i
++
)
{
for
(
let
j
=
0
;
j
<
this
.
multipleSelection
.
length
;
j
++
)
{
if
(
this
.
multipleSelection
[
j
].
purchase_item_id
==
this
.
itemlist
[
i
].
purchase_item_id
)
{
filterArr
.
push
(
this
.
itemlist
[
i
])
}
}
}
this
.
formParam
.
itemlist
=
filterArr
;
...
...
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