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
ac29c6cc
Commit
ac29c6cc
authored
Jun 18, 2023
by
zhoutong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
装箱暂存
parent
4d1fec92
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
240 additions
and
93 deletions
+240
-93
boxAir.js
src/api/ecw/boxAir.js
+60
-1
indexAir.vue
src/views/ecw/box/indexAir.vue
+7
-1
index.vue
src/views/ecw/box/shippingAir/nodePage/mergePkg/index.vue
+143
-91
pkgPage.vue
src/views/ecw/box/shippingAir/nodePage/mergePkg/pkgPage.vue
+15
-0
unPkgPage.vue
...views/ecw/box/shippingAir/nodePage/mergePkg/unPkgPage.vue
+15
-0
No files found.
src/api/ecw/boxAir.js
View file @
ac29c6cc
...
...
@@ -80,7 +80,7 @@ export function createGoods(data) {
*/
export
function
getMergePkgList
(
params
)
{
return
request
({
url
:
"
/ecw/box-merge-pkg/page
r
"
,
url
:
"
/ecw/box-merge-pkg/page
"
,
method
:
"
get
"
,
params
,
});
...
...
@@ -99,4 +99,63 @@ export function createMergePkg(data) {
method
:
"
post
"
,
data
,
});
}
/**
* 更新合包箱
*
* @export
* @param {*} data
* @return {*}
*/
export
function
updateMergePkg
(
data
)
{
return
request
({
url
:
"
/ecw/box-merge-pkg/update
"
,
method
:
"
put
"
,
data
,
});
}
/**
* 删除合包箱
*
* @export
* @param {*} data
* @return {*}
*/
export
function
deleteMergePkg
(
id
)
{
return
request
({
url
:
`/ecw/box-merge-pkg/delete?id=`
+
id
,
method
:
"
delete
"
,
});
}
/**
* 获得未装箱列表分页
*
* @export
* @param {*} data
* @return {*}
*/
export
function
getUnPkgPage
(
params
)
{
return
request
({
url
:
"
/ecw/box-merge-pkg/getUnPkgPage
"
,
method
:
"
get
"
,
params
,
});
}
/**
* 获得已装箱列表分页
*
* @export
* @param {*} data
* @return {*}
*/
export
function
getPkgPageByPkgId
(
params
)
{
return
request
({
url
:
"
/ecw/box-merge-pkg/getPkgPageByPkgId
"
,
method
:
"
get
"
,
params
,
});
}
\ No newline at end of file
src/views/ecw/box/indexAir.vue
View file @
ac29c6cc
...
...
@@ -168,12 +168,17 @@
<
/template
>
<
script
>
import
{
createbox
,
updatebox
,
deletebox
,
getbox
,
getboxPage
,
exportboxExcel
}
from
'
@/api/ecw/box
'
import
{
deletebox
,
getbox
,
getboxPage
,
exportboxExcel
}
from
'
@/api/ecw/box
'
import
{
getChannelList
}
from
'
@/api/ecw/channel
'
import
{
getWarehouseList
}
from
'
@/api/ecw/warehouse
'
import
costForm
from
'
./costForm.vue
'
import
regError
from
'
./regError.vue
'
import
editAirForm
from
'
./editAirForm.vue
'
import
{
downloadFile
,
downloadFileByUrl
,
formatDate
,
}
from
"
./shippingAir/utils
"
;
export
default
{
name
:
'
indexAir
'
,
...
...
@@ -291,6 +296,7 @@ export default {
this
.
getChannelList
()
}
,
methods
:
{
formatDate
,
getChannelList
()
{
getChannelList
().
then
((
res
)
=>
(
this
.
channelList
=
res
.
data
))
}
,
...
...
src/views/ecw/box/shippingAir/nodePage/mergePkg/index.vue
View file @
ac29c6cc
This diff is collapsed.
Click to expand it.
src/views/ecw/box/shippingAir/nodePage/mergePkg/pkgPage.vue
0 → 100644
View file @
ac29c6cc
<
template
>
<div>
22
</div>
</
template
>
<
script
>
export
default
{
}
</
script
>
<
style
>
</
style
>
\ No newline at end of file
src/views/ecw/box/shippingAir/nodePage/mergePkg/unPkgPage.vue
0 → 100644
View file @
ac29c6cc
<
template
>
<div>
11
</div>
</
template
>
<
script
>
export
default
{
}
</
script
>
<
style
>
</
style
>
\ No newline at end of file
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