Commit 374d4925 authored by honghy's avatar honghy

需求120 PDA-集运签收-单个签收

parent 3404e477
...@@ -18,7 +18,9 @@ export const getConsWarehouseApp = () => { ...@@ -18,7 +18,9 @@ export const getConsWarehouseApp = () => {
}); });
} }
// 获得配送管理分页 /**
* 获得配送管理分页
*/
export function getExpressApp() { export function getExpressApp() {
return http(`/ecw/express/getExpressApp`, { return http(`/ecw/express/getExpressApp`, {
method: 'GET', method: 'GET',
...@@ -33,3 +35,21 @@ export const createCons = (params) => { ...@@ -33,3 +35,21 @@ export const createCons = (params) => {
method: 'post', 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',
})
}
...@@ -402,6 +402,13 @@ ...@@ -402,6 +402,13 @@
{ {
"navigationBarTitleText": "新建包裹" "navigationBarTitleText": "新建包裹"
} }
},
{
"path" : "pages/cons/components/signCons",
"style" :
{
"navigationBarTitleText": "包裹签收"
}
} }
], ],
"globalStyle": { "globalStyle": {
......
...@@ -149,7 +149,7 @@ export default { ...@@ -149,7 +149,7 @@ export default {
for (let i in transportList) { for (let i in transportList) {
that.transportList.push({value: transportList[i].value, text: transportList[i].label}) that.transportList.push({value: transportList[i].value, text: transportList[i].label})
} }
}, 100) }, 300)
getConsWarehouseApp().then(row => { getConsWarehouseApp().then(row => {
this.warehouseList = row this.warehouseList = row
...@@ -212,6 +212,7 @@ export default { ...@@ -212,6 +212,7 @@ export default {
} }
var form = { var form = {
...this.form, ...this.form,
status: 0,
consItemVOList: this.consItemVOList consItemVOList: this.consItemVOList
} }
createCons(form).then(() => { createCons(form).then(() => {
...@@ -237,6 +238,7 @@ export default { ...@@ -237,6 +238,7 @@ export default {
} }
var form = { var form = {
...this.form, ...this.form,
status: 0,
consItemVOList: this.consItemVOList consItemVOList: this.consItemVOList
} }
createCons(form).then(() => { createCons(form).then(() => {
......
This diff is collapsed.
...@@ -93,7 +93,7 @@ export default { ...@@ -93,7 +93,7 @@ export default {
that.listData = that.listData.concat(data); that.listData = that.listData.concat(data);
that.status = 'more'; that.status = 'more';
} }
if (res.total === that.listData.length) that.status = 'noMore'; if (res.total <= that.listData.length) that.status = 'noMore';
uni.stopPullDownRefresh(); uni.stopPullDownRefresh();
}); });
}, },
...@@ -114,9 +114,12 @@ export default { ...@@ -114,9 +114,12 @@ export default {
this.getData(); this.getData();
} }
}, },
toDetail() { toDetail(v) {
// uni.navigateTo({
// url: '/pages/cons/components/createCons'
// });
uni.navigateTo({ uni.navigateTo({
url: '/pages/cons/components/createCons?orderId=1' url: '/pages/cons/components/signCons?consId='+v.id
}); });
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment