You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
554 lines
12 KiB
554 lines
12 KiB
<template> |
|
<!-- <u-navbar title="自提明细扫描" placeholder border=true :autoBack="true" leftIconSize='35'></u-navbar> --> |
|
<u-navbar title="自提明细扫描" bgColor='#D3832A' leftIconColor='#ffffff' titleStyle='color:#ffffff' placeholder |
|
:autoBack="true" leftIconSize='35'></u-navbar> |
|
<view class="headtop"> |
|
<view> |
|
<view>车牌号:{{details.pickUpPlate}}</view> |
|
<view>司机:{{details.consignee}}</view> |
|
</view> |
|
</view> |
|
<view class="tabmabx"> |
|
<view> |
|
<uni-table :loading='false' emptyText="暂无更多数据"> |
|
<uni-tr> |
|
<uni-th width="70" align="center"></uni-th> |
|
<uni-th align="center">订单总数</uni-th> |
|
<uni-th align="center">签收件数</uni-th> |
|
</uni-tr> |
|
<uni-tr v-for="item in [1,2]"> |
|
<uni-td align="center" class="jhjs">{{item==1?'计划':'完成'}}</uni-td> |
|
<uni-td align="center">{{item==1?details.orderNum:details.completeNum}}</uni-td> |
|
<uni-td align="center">{{item==1?details.planNum:details.signedNum}}</uni-td> |
|
</uni-tr> |
|
</uni-table> |
|
</view> |
|
</view> |
|
<view class="scinp"> |
|
<view>齐套状态</view> |
|
<view> |
|
<cusSelects @change='checktype' :data='typearr' :value="schanvalue" placeholder='全部' :arrLeft='5' size='145' |
|
:clearable='true'></cusSelects> |
|
</view> |
|
<view class="inputs"> |
|
<input placeholder="请输入查询的订单号" /> |
|
</view> |
|
<view class="btscan" @click="initpage">查询</view> |
|
</view> |
|
<view class="tabtip"> |
|
<view @click="setorderStatus(1)"> |
|
<view :class="orderType==1?'xz':''">定制品</view> |
|
</view> |
|
<view @click="setorderStatus(2)"> |
|
<view :class="orderType==2?'xz':''">库存品</view> |
|
</view> |
|
|
|
<view @click="setorderStatus(3)"> |
|
<view :class="orderType==3?'xz':''">零担</view> |
|
</view> |
|
|
|
</view> |
|
<scroll-view scroll-y="true" class="scrollv"> |
|
<view class="mabxs"> |
|
|
|
<block v-for="item in dataList" :key="item"> |
|
<!-- 定制品 --> |
|
<template v-if="orderType==1"> |
|
<view class="ite" @click="showsdqs"> |
|
<view> |
|
<view @click.stop="goorderdetail(item)">订单号:{{item.orderCode}}</view> |
|
<view>包条码:{{item.orderPackageCode}}</view> |
|
</view> |
|
<view> |
|
<view>是否扫描:{{item.scanStatusStr}}</view> |
|
<view>异常:{{item.errorStatusStr}}</view> |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<!-- 库存品 --> |
|
<template v-if="orderType==2"> |
|
<view class="ite" @click="showsdqs"> |
|
<view> |
|
<view>SKU:{{item.sku}}</view> |
|
<view>包件号:{{item.coding}}</view> |
|
</view> |
|
<view> |
|
<view>物品:{{item.descriptionGoods}}</view> |
|
<view>规格:{{item.specification}}</view> |
|
</view> |
|
<view> |
|
<view>单位:{{item.cargoUnit}}</view> |
|
<view>扫描:{{item.scanStatus==1?'未扫描':item.scanStatus==''?'未扫描':'扫描'}}</view> |
|
<!-- <view>规格:{{item.specification}}</view> --> |
|
</view> |
|
</view> |
|
|
|
</template> |
|
|
|
<!-- 零担 --> |
|
<template v-if="orderType==3"> |
|
<view class="ite" @click="showsTipsZero(item)"> |
|
<view> |
|
<view>订单号:{{item.orderCode}}</view> |
|
</view> |
|
<view> |
|
<view>运单号:{{item.waybillNumber}}</view> |
|
</view> |
|
<view> |
|
<view>产品名称:{{item.firsts}}</view> |
|
</view> |
|
<view> |
|
<view>预计签收件数:{{item.reservationQuantity}}</view> |
|
</view> |
|
</view> |
|
</template> |
|
</block> |
|
</view> |
|
</scroll-view> |
|
<tiplist ref="tiplists"></tiplist> |
|
<saomiao2></saomiao2> |
|
</template> |
|
|
|
<script lang="ts" setup> |
|
import { |
|
onLoad, |
|
onShow, |
|
onHide, |
|
onUnload |
|
} from '@dcloudio/uni-app' |
|
import { |
|
billLadingdetailList, |
|
billLadinggetInventoryNum, |
|
billLadingzeroBillData, |
|
billLadingscan, |
|
billLadinggetZeroBillPack |
|
} from '@/api/user.js' |
|
import { pagedetailType } from '@/interfaces/pagesHome/SelfPickupDetails' |
|
import cusSelects from '@/compoment/cus-selects-fan/cus-selects-fan.vue' |
|
import { inject, reactive, ref, toRefs, watchEffect } from "vue"; |
|
const utils = inject('utils') as any |
|
let details = reactive<pagedetailType>({ |
|
schanvalue: '', |
|
typearr: [ |
|
{ |
|
value: 1, |
|
label: '齐套' |
|
}, |
|
{ |
|
value: 2, |
|
label: '部分扫' |
|
}, |
|
{ |
|
value: 3, |
|
label: '未扫' |
|
} |
|
], |
|
dataList: [], |
|
orderStatus: 0, |
|
orderType: 1, |
|
billLadingId: '', |
|
orderCode: '', |
|
consignee: '', |
|
pickUpPlate: '', |
|
carTypeStr: '', |
|
orderNum: '', |
|
planNum: '', |
|
completeNum: '', |
|
signedNum: '', |
|
scancode: '', |
|
isscan: false, |
|
}) |
|
const tiplists = ref(null) |
|
onLoad((op) => { |
|
details.billLadingId = op.billLadingId |
|
initpage() |
|
// details.scancode='1686568463442280450' |
|
}) |
|
onShow(() => { |
|
uni.$on('scancodedate', function (code) { |
|
if (code) { |
|
console.log(code); |
|
details.scancode = code |
|
sacn() |
|
} |
|
}) |
|
}) |
|
function goorderdetail(item) { |
|
uni.navigateTo({ |
|
url: '/pagesHome/pages/orderDetails/orderDetails?orderCode=' + item.orderCode |
|
}) |
|
} |
|
watchEffect(() => { |
|
if (details.isscan && details.signedNum) { |
|
utils.ttsspke(details.signedNum + '件') |
|
} |
|
}) |
|
onHide(() => { |
|
uni.$off('scancodedate') |
|
}) |
|
function showsdqs() { |
|
tiplists.value.setdetails({ |
|
isshow: true, |
|
tipstate: 1, |
|
title: '请输入扫描的码', |
|
placeholder: '请输入扫描的码', |
|
inputtext: '', |
|
success: (detail) => { |
|
details.scancode = detail.inputtext |
|
sacn() |
|
tiplists.value.setdetails({ isshow: false }) |
|
}, |
|
cancel: () => { |
|
tiplists.value.setdetails({ isshow: false }) |
|
}, |
|
close: () => { |
|
tiplists.value.setdetails({ isshow: false }) |
|
} |
|
}) |
|
} |
|
|
|
function showsTipsZero(item) { |
|
console.log('item :>> ', item); |
|
|
|
const inpList = [ |
|
{ |
|
title: item.firsts, |
|
maxNum: item.reservationQuantity, |
|
minNum: 0, |
|
type: 'Number', |
|
value: 0 |
|
} |
|
] |
|
|
|
// 单个提交零担数据 |
|
tiplists.value.setdetails({ |
|
isshow: true, |
|
tipstate: 4, |
|
inpList, |
|
title: '签收零担', |
|
placeholder: `订单${item.orderCode}下${item.firsts}的数量`, |
|
inputtext: '', |
|
success: async (detail) => { |
|
try { |
|
console.log('item :>> ', item); |
|
const { inpList: [_info] } = detail |
|
if (_info.value === 0) return uni.showToast({ |
|
title: '请输入签收的零担数量', |
|
icon: 'none' |
|
}) |
|
const submitForm = { |
|
id: item.id, |
|
stockArticleId: item.stockArticleId, |
|
quantity: _info.value |
|
} |
|
const res = await billLadinggetZeroBillPack({ billLadingId: details.billLadingId, billLadingZeroVO: submitForm }) |
|
if (res.code === 200) initpage() |
|
} catch (err) { |
|
console.log('err :>> ', err); |
|
//TODO handle the exception |
|
} finally { |
|
tiplists.value.setdetails({ isshow: false }) |
|
} |
|
}, |
|
cancel: () => { |
|
tiplists.value.setdetails({ isshow: false }) |
|
}, |
|
close: () => { |
|
tiplists.value.setdetails({ isshow: false }) |
|
} |
|
}) |
|
} |
|
|
|
async function sacn() { |
|
// 标签页为3时, 不支持扫描 |
|
if (details.orderCode === 3) return |
|
let data = { |
|
id: details.billLadingId, |
|
coding: details.scancode, |
|
type: details.orderType == 1 ? '2' : '1' |
|
} |
|
let res = await billLadingscan(data) |
|
console.log(res); |
|
if (res.code == 200) { |
|
details.isscan = true |
|
initpage() |
|
|
|
} else if (res.code === 3001) { |
|
uni.showToast({ |
|
title: res.msg, |
|
icon: 'none' |
|
}) |
|
utils.ttsspke(res.audio) |
|
} |
|
} |
|
async function initpage() { |
|
console.log('获取数据') |
|
if (details.orderType == 1) { |
|
let data = { |
|
orderStatus: details.orderStatus, |
|
billLadingId: details.billLadingId, |
|
orderCode: details.orderCode |
|
} |
|
let response = await billLadingdetailList(data) |
|
details.dataList = response.data.list |
|
details.consignee = response.data.consignee |
|
details.pickUpPlate = response.data.pickUpPlate |
|
details.carTypeStr = response.data.carTypeStr |
|
details.orderNum = response.data.orderNum |
|
details.planNum = response.data.planNum |
|
details.completeNum = response.data.completeNum |
|
details.signedNum = response.data.signedNum |
|
} else if (details.orderType == 2) { |
|
let data = { |
|
orderStatus: details.orderStatus, |
|
id: details.billLadingId, |
|
orderCode: details.orderCode, |
|
current: 1, |
|
size: 10 |
|
} |
|
let response = await billLadinggetInventoryNum(data) |
|
details.dataList = response.data.records |
|
} |
|
else if (details.orderType == 3) { |
|
let data = { |
|
billLadingId: details.billLadingId |
|
} |
|
const response = await billLadingzeroBillData(data) |
|
console.log('response :>> ', response); |
|
const { code } = response |
|
if (code === 200) { |
|
details.dataList = response.data || [] |
|
} |
|
} |
|
} |
|
function setorderStatus(state : number) { |
|
details.orderType = state |
|
initpage() |
|
} |
|
function checktype(e) { |
|
if (e == '') { |
|
details.schanvalue = '' |
|
} |
|
details.typearr.map(item => { |
|
if (item.value == e) { |
|
details.schanvalue = item.label |
|
details.orderStatus = item.value |
|
console.log(details.schanvalue) |
|
} |
|
}) |
|
} |
|
const { orderType, schanvalue, typearr, dataList } = toRefs(details) |
|
</script> |
|
|
|
<style lang="scss"> |
|
.tabtip { |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
|
|
>view { |
|
width: 50%; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
background-color: #ffffff; |
|
font-size: 32upx; |
|
font-weight: 400; |
|
color: #90A0AF; |
|
|
|
>view { |
|
height: 80upx; |
|
border-bottom: 8upx solid #ffffff; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
} |
|
|
|
.xz { |
|
color: #D3832A; |
|
border-bottom: 8upx solid #D3832A; |
|
// border-radius: 5upx; |
|
} |
|
} |
|
|
|
.scrollv { |
|
width: 686upx; |
|
height: 48.5vh; |
|
// padding: 10upx; |
|
box-sizing: border-box; |
|
background-color: #ffffff; |
|
margin: auto; |
|
margin-top: 20upx; |
|
padding: 20upx; |
|
box-sizing: border-box; |
|
|
|
.mabxs { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
padding-top: 5upx; |
|
|
|
.ite { |
|
width: 96%; |
|
// width: 100%; |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
padding: 20upx 15upx; |
|
box-sizing: border-box; |
|
border-radius: 8upx; |
|
box-shadow: 0upx 2upx 10upx 0upx #e2e2e3; |
|
margin-bottom: 20upx; |
|
padding-bottom: 10upx; |
|
|
|
&:nth-last-child(1) { |
|
margin-bottom: 5upx; |
|
} |
|
|
|
>view { |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
width: 100%; |
|
margin-bottom: 20upx; |
|
|
|
&:nth-last-child(1) { |
|
margin-bottom: none !important; |
|
} |
|
|
|
>view { |
|
// width: 50%; |
|
// flex: 1; |
|
font-size: 28upx; |
|
font-weight: 400; |
|
color: #092C4D; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
.tabmabx { |
|
width: 100%; |
|
padding: 0 32upx; |
|
box-sizing: border-box; |
|
background-color: #ffffff; |
|
padding-bottom: 20upx; |
|
|
|
.uni-table-th { |
|
background-color: #F8FBFF; |
|
font-size: 28upx; |
|
font-weight: 400; |
|
color: #092C4D; |
|
} |
|
|
|
.jhjs {} |
|
|
|
.uni-table-tr:nth-last-child(2)>.uni-table-td { |
|
font-size: 36upx; |
|
font-weight: 400; |
|
color: #092C4D; |
|
|
|
&:nth-of-type(1) { |
|
font-size: 28upx !important; |
|
font-weight: 400; |
|
color: #092C4D !important; |
|
} |
|
} |
|
|
|
.uni-table-tr:nth-last-child(1)>.uni-table-td { |
|
border-bottom: none !important; |
|
font-size: 36upx; |
|
font-weight: 400; |
|
color: #0086F1; |
|
|
|
&:nth-of-type(1) { |
|
font-size: 28upx !important; |
|
font-weight: 400; |
|
color: #092C4D !important; |
|
} |
|
} |
|
|
|
>view { |
|
border-radius: 8upx; |
|
border: 1upx solid #EEEEEE; |
|
padding-bottom: -2upx; |
|
} |
|
} |
|
|
|
.headtop { |
|
display: flex; |
|
flex-direction: column; |
|
padding: 34upx 32upx; |
|
box-sizing: border-box; |
|
background-color: #ffffff; |
|
|
|
>view { |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
font-size: 28upx; |
|
font-weight: 400; |
|
color: #092C4D; |
|
margin-bottom: 24upx; |
|
|
|
&:nth-of-type(2) { |
|
margin-bottom: 0; |
|
} |
|
|
|
>view { |
|
flex: 1; |
|
} |
|
} |
|
} |
|
|
|
.scinp { |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
padding: 12upx 32upx; |
|
box-sizing: border-box; |
|
background-color: #ffffff; |
|
|
|
>view:nth-of-type(1) { |
|
font-size: 28upx; |
|
font-weight: 400; |
|
color: #092C4D; |
|
} |
|
|
|
.inputs { |
|
width: 276upx; |
|
height: 64upx; |
|
background: #F5F5F6; |
|
border-radius: 8upx; |
|
opacity: 1; |
|
border: 2upx solid #EEEEEE; |
|
padding: 10upx; |
|
box-sizing: border-box; |
|
font-size: 24upx; |
|
font-weight: 400; |
|
color: #AFB4BA; |
|
|
|
>input { |
|
flex: 1; |
|
font-size: 24upx; |
|
color: #092C4D; |
|
} |
|
} |
|
|
|
.btscan { |
|
width: 128upx; |
|
height: 64upx; |
|
background: #D3832A; |
|
border-radius: 8upx; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
font-size: 32upx; |
|
font-weight: 400; |
|
color: #FFFFFF; |
|
} |
|
} |
|
</style> |