Commit 9c67c3bc authored by honghy's avatar honghy

需求121 PDA-集运签收-批量签收

parent 374d4925
...@@ -6,7 +6,7 @@ import http from '../util/http' ...@@ -6,7 +6,7 @@ import http from '../util/http'
export const consPage = (params) => { export const consPage = (params) => {
return http(`/ecw/cons/page`, params, { return http(`/ecw/cons/page`, params, {
method: 'GET', method: 'GET',
}); })
} }
/** /**
...@@ -15,7 +15,7 @@ export const consPage = (params) => { ...@@ -15,7 +15,7 @@ export const consPage = (params) => {
export const getConsWarehouseApp = () => { export const getConsWarehouseApp = () => {
return http(`/ecw/warehouse/getConsWarehouseApp`, { return http(`/ecw/warehouse/getConsWarehouseApp`, {
method: 'GET', method: 'GET',
}); })
} }
/** /**
...@@ -24,7 +24,7 @@ export const getConsWarehouseApp = () => { ...@@ -24,7 +24,7 @@ export const getConsWarehouseApp = () => {
export function getExpressApp() { export function getExpressApp() {
return http(`/ecw/express/getExpressApp`, { return http(`/ecw/express/getExpressApp`, {
method: 'GET', method: 'GET',
}); })
} }
/** /**
...@@ -46,10 +46,28 @@ export const getConsById = (params) => { ...@@ -46,10 +46,28 @@ export const getConsById = (params) => {
} }
/** /**
* 新增包裹 * 签收包裹
*/ */
export const signedPda = (params) => { export const signedPda = (params) => {
return http('/ecw/cons/signedPda', params, { return http('/ecw/cons/signedPda', params, {
method: 'put', method: 'put',
}) })
} }
/**
* 获得客户联系人下拉框列表
*/
export const selectPda = (params) => {
return http('/ecw/customer-contacts/selectPda', params, {
method: 'get',
})
}
/**
* 生成快递单号
*/
export function getCourierNumber() {
return http(`/ecw/cons/getCourierNumber`, {
method: 'GET',
})
}
...@@ -409,6 +409,13 @@ ...@@ -409,6 +409,13 @@
{ {
"navigationBarTitleText": "包裹签收" "navigationBarTitleText": "包裹签收"
} }
},
{
"path" : "pages/cons/components/batchSignCons",
"style" :
{
"navigationBarTitleText": "批量签收包裹"
}
} }
], ],
"globalStyle": { "globalStyle": {
......
This diff is collapsed.
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
<view style="background: #fff; min-height: calc(100vh - 44px)"> <view style="background: #fff; min-height: calc(100vh - 44px)">
<!-- 自定义表单校验 --> <!-- 自定义表单校验 -->
<uni-forms ref="form" :rules="rules" :modelValue="form" label-width="100" class="padding-xs"> <uni-forms ref="form" :rules="rules" :modelValue="form" label-width="100" class="padding-xs">
<uni-forms-item :label="$t('集运仓库')" required name="warehouseId"> <uni-forms-item :label="$t('集运仓库')" required name="wareId">
<uni-data-checkbox v-model="form.warehouseId" :localdata="warehouseList" mode="tag"></uni-data-checkbox> <uni-data-checkbox v-model="form.wareId" :localdata="warehouseList" mode="tag"></uni-data-checkbox>
</uni-forms-item> </uni-forms-item>
<uni-forms-item label="快递单号" required name="expressNo"> <uni-forms-item label="快递单号" required name="expressNo">
<uni-easyinput placeholder="请输入快递单号" v-model="form.expressNo"/> <uni-easyinput placeholder="请输入快递单号" v-model="form.expressNo"/>
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
</uni-forms-item> </uni-forms-item>
<uni-row class="padding-xs" v-for="(item,index) in consItemVOList"> <uni-row class="padding-xs" v-for="(item,index) in consItemVOList">
<uni-col :span="3"> <uni-col :span="3">
<uni-forms-item :label="'商品'+(index + 1)" class="align-center"/> <uni-forms-item :label="'商品'+(index + 1)"/>
</uni-col> </uni-col>
<uni-col :span="8"> <uni-col :span="8">
<view @click="tagIndex(index)"> <view @click="tagIndex(index)">
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
</uni-col> </uni-col>
</uni-row> </uni-row>
<button class="margin-left-xs" type="primary" size="mini" @click="addProduct()"> <button class="margin-left-xs" type="primary" size="mini" @click="addProduct()">
{{ $t('添加') }} {{ $t('添加一行') }}
</button> </button>
<uni-forms-item label="填单数据" class="align-center"> <uni-forms-item label="填单数据" class="align-center">
{{ sum }} {{ sum }}
...@@ -111,7 +111,6 @@ export default { ...@@ -111,7 +111,6 @@ export default {
}, },
data() { data() {
return { return {
range: [{"value": 0, "text": "义乌仓"}, {"value": 1, "text": "佛山仓"}],
// 自定义表单数据 // 自定义表单数据
form: {}, form: {},
// 自定义表单校验规则 // 自定义表单校验规则
...@@ -122,7 +121,7 @@ export default { ...@@ -122,7 +121,7 @@ export default {
errorMessage: '快递单号不能为空' errorMessage: '快递单号不能为空'
}] }]
}, },
warehouseId: { wareId: {
rules: [{ rules: [{
required: true, required: true,
errorMessage: '集运仓库不能为空' errorMessage: '集运仓库不能为空'
...@@ -154,7 +153,7 @@ export default { ...@@ -154,7 +153,7 @@ export default {
getConsWarehouseApp().then(row => { getConsWarehouseApp().then(row => {
this.warehouseList = row this.warehouseList = row
if (row) { if (row) {
this.form.warehouseId = row[0].value this.form.wareId = row[0].value
} }
}) })
getExpressApp().then(row => { getExpressApp().then(row => {
......
...@@ -182,7 +182,6 @@ export default { ...@@ -182,7 +182,6 @@ export default {
data() { data() {
return { return {
iconPath, iconPath,
range: [{"value": 0, "text": "义乌仓"}, {"value": 1, "text": "佛山仓"}],
// 自定义表单校验规则 // 自定义表单校验规则
rules: { rules: {
expressNo: { expressNo: {
...@@ -257,7 +256,7 @@ export default { ...@@ -257,7 +256,7 @@ export default {
var defaultDate = `${year}-${month}-${date} ${hours}:${minutes}:${seconds}` var defaultDate = `${year}-${month}-${date} ${hours}:${minutes}:${seconds}`
row['signedTime'] = defaultDate row['signedTime'] = defaultDate
} }
row.mediaUrl = row.mediaUrl.split(',').map(e => { row.mediaUrl = (row.mediaUrl === null || row.mediaUrl === '') ? [] : row.mediaUrl.split(',').map(e => {
return { return {
url: e, url: e,
type: ['jpg', 'png', 'jpeg', 'heic'].includes(e.split('.')?.reverse()[0]) ? 'image' : 'video' type: ['jpg', 'png', 'jpeg', 'heic'].includes(e.split('.')?.reverse()[0]) ? 'image' : 'video'
...@@ -406,8 +405,8 @@ export default { ...@@ -406,8 +405,8 @@ export default {
}) })
}, },
goList() { goList() {
uni.redirectTo({ uni.navigateBack({
url: '/pages/cons/list' delta: 1
}) })
}, },
delProduct(index) { delProduct(index) {
......
<template> <template>
<view style="background: #fff; min-height: calc(100vh - 44px)"> <view style="background: #fff; min-height: calc(100vh - 44px)">
<view class="search-header"> <view class="search-header">
<!-- <uni-search-bar class="uni-mt-10" @confirm="search" placeholder="请输入订单号" radius="100" v-model="keyword" cancelButton="none" clearButton="none" ></uni-search-bar> --> <!-- <uni-search-bar class="uni-mt-10" @confirm="search" placeholder="请输入订单号" radius="100" v-model="keyword" cancelButton="none" clearButton="none" ></uni-search-bar> -->
<scanlistener <scanlistener
...@@ -12,6 +13,9 @@ ...@@ -12,6 +13,9 @@
@submit="keyword=$event;search()" @submit="keyword=$event;search()"
></scanlistener> ></scanlistener>
<!-- <text class="cuIcon-scan" style="font-size: 21px;" @click="scanCode"></text> --> <!-- <text class="cuIcon-scan" style="font-size: 21px;" @click="scanCode"></text> -->
<button class="margin-left-xs" type="primary" size="mini" @click="batchSign()" style="float: right">
{{ $t('批量签收') }}
</button>
</view> </view>
<view class="scroll"> <view class="scroll">
...@@ -119,7 +123,12 @@ export default { ...@@ -119,7 +123,12 @@ export default {
// url: '/pages/cons/components/createCons' // url: '/pages/cons/components/createCons'
// }); // });
uni.navigateTo({ uni.navigateTo({
url: '/pages/cons/components/signCons?consId='+v.id url: '/pages/cons/components/signCons?consId=' + v.id
});
},
batchSign() {
uni.navigateTo({
url: '/pages/cons/components/batchSignCons'
}); });
} }
} }
......
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