子卷配送
This commit is contained in:
@@ -3,6 +3,16 @@
|
||||
<nav-bar title="子卷配送"></nav-bar>
|
||||
<view class="zd_content">
|
||||
<view class="zd_wrapper">
|
||||
<view class="filter_item">
|
||||
<view class="filter_label_wraper">
|
||||
<span class="filter_label">起点</span>
|
||||
</view>
|
||||
<view class="filter_input_wraper">
|
||||
<search-box
|
||||
v-model="val3"
|
||||
/>
|
||||
</view>
|
||||
</view>
|
||||
<view class="filter_item">
|
||||
<view class="filter_label_wraper">
|
||||
<span class="filter_label">载具码</span>
|
||||
@@ -161,7 +171,7 @@
|
||||
return
|
||||
}
|
||||
try {
|
||||
let res = await shippingConfirm(this.checkArr)
|
||||
let res = await shippingConfirm(this.checkArr, this.val3)
|
||||
uni.showToast({
|
||||
title: res.message,
|
||||
icon: 'none'
|
||||
|
||||
@@ -71,10 +71,11 @@ export const needVehicle = (code) => request({
|
||||
}
|
||||
})
|
||||
// 1.3配送确认
|
||||
export const shippingConfirm = (rows) => request({
|
||||
export const shippingConfirm = (rows, code) => request({
|
||||
url:'api/pda/shipping/confirm',
|
||||
data: {
|
||||
cut_rows: rows
|
||||
cut_rows: rows,
|
||||
point_code: code
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user