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
0a712e88
authored
Feb 08, 2025
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
生成寄售召回单
parent
49b6905f
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
src/views/consignmentManagement/consignmentRecallDetail.vue
src/views/consignmentManagement/createConsignmentRecallOrder.vue
src/views/consignmentManagement/consignmentRecallDetail.vue
View file @
0a712e88
...
@@ -134,6 +134,27 @@ export default {
...
@@ -134,6 +134,27 @@ export default {
*/
*/
handleSelectionChange
(
val
)
{
handleSelectionChange
(
val
)
{
this
.
multipleSelection
=
val
;
this
.
multipleSelection
=
val
;
}
,
/**
* 添加库存
* @param {number
}
type - 0:添加选中 1:一键添加全部
*/
addInventory
(
type
)
{
if
(
!
this
.
multipleSelection
.
length
)
{
this
.
$message
.
warning
(
'请选择数据'
);
return
;
}
if
(
type
)
{
// 一键添加全部库存
this
.
recall_json
=
this
.
list
;
}
else
{
// 添加选中的库存
this
.
recall_json
=
this
.
multipleSelection
;
}
this
.
dialogVisible_1
=
false
;
// 关闭弹窗
this
.
$message
.
success
(
'添加成功'
);
}
}
}
,
}
,
components
:
{
components
:
{
...
...
src/views/consignmentManagement/createConsignmentRecallOrder.vue
View file @
0a712e88
This diff is collapsed.
Click to expand it.
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