Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-pda-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-pda-master
Commits
374d4925
Commit
374d4925
authored
Mar 11, 2025
by
honghy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
需求120 PDA-集运签收-单个签收
parent
3404e477
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
547 additions
and
5 deletions
+547
-5
cons.js
src/api/cons.js
+21
-1
pages.json
src/pages.json
+7
-0
createCons.vue
src/pages/cons/components/createCons.vue
+3
-1
signCons.vue
src/pages/cons/components/signCons.vue
+510
-0
list.vue
src/pages/cons/list.vue
+6
-3
No files found.
src/api/cons.js
View file @
374d4925
...
...
@@ -18,7 +18,9 @@ export const getConsWarehouseApp = () => {
});
}
// 获得配送管理分页
/**
* 获得配送管理分页
*/
export
function
getExpressApp
()
{
return
http
(
`/ecw/express/getExpressApp`
,
{
method
:
'
GET
'
,
...
...
@@ -33,3 +35,21 @@ export const createCons = (params) => {
method
:
'
post
'
,
})
}
/**
* 新增包裹
*/
export
const
getConsById
=
(
params
)
=>
{
return
http
(
'
/ecw/cons/getPad
'
,
params
,
{
method
:
'
get
'
,
})
}
/**
* 新增包裹
*/
export
const
signedPda
=
(
params
)
=>
{
return
http
(
'
/ecw/cons/signedPda
'
,
params
,
{
method
:
'
put
'
,
})
}
src/pages.json
View file @
374d4925
...
...
@@ -402,6 +402,13 @@
{
"navigationBarTitleText"
:
"新建包裹"
}
},
{
"path"
:
"pages/cons/components/signCons"
,
"style"
:
{
"navigationBarTitleText"
:
"包裹签收"
}
}
],
"globalStyle"
:
{
...
...
src/pages/cons/components/createCons.vue
View file @
374d4925
...
...
@@ -149,7 +149,7 @@ export default {
for
(
let
i
in
transportList
)
{
that
.
transportList
.
push
({
value
:
transportList
[
i
].
value
,
text
:
transportList
[
i
].
label
})
}
},
1
00
)
},
3
00
)
getConsWarehouseApp
().
then
(
row
=>
{
this
.
warehouseList
=
row
...
...
@@ -212,6 +212,7 @@ export default {
}
var
form
=
{
...
this
.
form
,
status
:
0
,
consItemVOList
:
this
.
consItemVOList
}
createCons
(
form
).
then
(()
=>
{
...
...
@@ -237,6 +238,7 @@ export default {
}
var
form
=
{
...
this
.
form
,
status
:
0
,
consItemVOList
:
this
.
consItemVOList
}
createCons
(
form
).
then
(()
=>
{
...
...
src/pages/cons/components/signCons.vue
0 → 100644
View file @
374d4925
This diff is collapsed.
Click to expand it.
src/pages/cons/list.vue
View file @
374d4925
...
...
@@ -93,7 +93,7 @@ export default {
that
.
listData
=
that
.
listData
.
concat
(
data
);
that
.
status
=
'
more
'
;
}
if
(
res
.
total
==
=
that
.
listData
.
length
)
that
.
status
=
'
noMore
'
;
if
(
res
.
total
<
=
that
.
listData
.
length
)
that
.
status
=
'
noMore
'
;
uni
.
stopPullDownRefresh
();
});
},
...
...
@@ -114,9 +114,12 @@ export default {
this
.
getData
();
}
},
toDetail
()
{
toDetail
(
v
)
{
// uni.navigateTo({
// url: '/pages/cons/components/createCons'
// });
uni
.
navigateTo
({
url
:
'
/pages/cons/components/
createCons?orderId=1
'
url
:
'
/pages/cons/components/
signCons?consId=
'
+
v
.
id
});
}
}
...
...
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