Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
87810d0e
Commit
87810d0e
authored
Nov 28, 2023
by
dragondean@qq.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
补充出乎拆单参数
parent
d70f4da4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
orderHandle.js
src/api/ecw/orderHandle.js
+2
-2
splitOrder.vue
...views/ecw/box/shippingSea/nodePage/cabinet/splitOrder.vue
+2
-2
No files found.
src/api/ecw/orderHandle.js
View file @
87810d0e
...
...
@@ -112,9 +112,9 @@ export function createSplitItem(data) {
}
// 删除订单拆单项
export
function
deleteSplitItem
(
id
)
{
export
function
deleteSplitItem
(
id
,
shipmentSplit
=
false
)
{
return
request
({
url
:
'
/order/split-item/delete?id=
'
+
id
,
url
:
'
/order/split-item/delete?id=
'
+
id
+
'
&shipmentSplit=
'
+
shipmentSplit
,
method
:
'
delete
'
})
}
...
...
src/views/ecw/box/shippingSea/nodePage/cabinet/splitOrder.vue
View file @
87810d0e
...
...
@@ -860,8 +860,8 @@ export default {
},
removeShop
(
id
)
{
let
that
=
this
;
that
.
$confirm
(
this
.
$t
(
"
是否
移除货物吗?
"
)).
then
(
function
()
{
deleteSplitItem
(
id
).
then
((
res
)
=>
{
that
.
$confirm
(
this
.
$t
(
"
确定
移除货物吗?
"
)).
then
(
function
()
{
deleteSplitItem
(
id
,
true
).
then
((
res
)
=>
{
that
.
$message
.
success
(
that
.
$t
(
"
移除成功
"
));
that
.
querySplitGoods
();
});
...
...
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