40 changed files with 3346 additions and 1239 deletions
@ -0,0 +1,271 @@
|
||||
<template> |
||||
<view :class="inputClassName" ref="inputRef"> |
||||
<input class="input" v-model="inputValue" @blur="handleBlur" @input="handleInput" :placeholder="props.placeholder" |
||||
:type="props.type" @confirm="handleConfirm" /> |
||||
|
||||
<view class="messageBox" v-if="props.rules.required"> |
||||
{{props.rules.message}} |
||||
</view> |
||||
|
||||
<!-- 移除按钮 --> |
||||
<view class="statusIconBox"> |
||||
<view |
||||
:class="{removeIcon:true, showClearable: inputClassName.success, removeClearable: !inputClassName.success}" |
||||
v-if="clearable"> |
||||
<u-icon :name="statusIcon" :color="inputClassName.success ?'#3AD8BC' : '#F8544B'" size="40"></u-icon> |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="removeIconBox"> |
||||
<view @click="()=>{ |
||||
inputValue = '' |
||||
handleChangeInputStatus() |
||||
}" :class="{removeIcon:true, showClearable: inputValue, removeClearable: !inputValue}" v-if="clearable"> |
||||
<u-icon name="close-circle-fill" color="#8f8f8f" size="40"></u-icon> |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<script setup lang="ts"> |
||||
import { computed, defineProps, defineEmits, ref, nextTick, type PropType } from 'vue'; |
||||
|
||||
type rulesType = { |
||||
/** 警示信息 */ |
||||
message : string, |
||||
/** 是否进行值的检测 */ |
||||
required : boolean, |
||||
/** 检测规则 */ |
||||
rulesFn ?: Function, |
||||
trigger : string | string[] |
||||
} |
||||
|
||||
const props = defineProps({ |
||||
/** 双向绑定的值 */ |
||||
modelValue: { |
||||
type: Number as PropType<Number> || String as PropType<String>, |
||||
required: true |
||||
}, |
||||
/** 输入框类型 */ |
||||
type: { |
||||
type: String as PropType<String>, |
||||
required: false, |
||||
default: 'text' |
||||
}, |
||||
/** 验证规则 */ |
||||
rules: { |
||||
type: Object as PropType<rulesType>, |
||||
required: false, |
||||
default: { |
||||
message: '', |
||||
required: true |
||||
} as any |
||||
}, |
||||
/** 是否显示清除按钮 */ |
||||
clearable: { |
||||
type: Boolean as PropType<Boolean>, |
||||
required: false, |
||||
default: true |
||||
}, |
||||
/** 提示 */ |
||||
placeholder: { |
||||
type: String as PropType<String>, |
||||
required: false, |
||||
default: '' |
||||
}, |
||||
/** 是否聚焦 */ |
||||
focus: { |
||||
type: Boolean as PropType<Boolean>, |
||||
required: false, |
||||
default: false |
||||
} |
||||
}) |
||||
/** 输入框实例 */ |
||||
const inputRef = ref() |
||||
|
||||
/** 状态Icon */ |
||||
const statusIcon = ref('') |
||||
|
||||
/** 输入框类名 */ |
||||
const inputClassName = ref({ |
||||
input_container: true |
||||
}) |
||||
|
||||
const emit = defineEmits(['input', 'change', 'blur', 'change', 'update:modelValue', 'confirm']) |
||||
|
||||
const inputValue = computed({ |
||||
get() { |
||||
return props.modelValue |
||||
}, |
||||
set(value) { |
||||
emit('update:modelValue', value) |
||||
} |
||||
}) |
||||
|
||||
/** 输入框状态改变 */ |
||||
const handleChangeInputStatus = async () => { |
||||
if (!props.rules.required) return |
||||
|
||||
await nextTick() |
||||
|
||||
statusIcon.value = '' |
||||
|
||||
delete inputClassName.value.success |
||||
delete inputClassName.value.error |
||||
|
||||
let isSuccess = false |
||||
|
||||
if (props.rules.rulesFn) isSuccess = props.rules.rulesFn(inputValue.value) |
||||
else isSuccess = Boolean(inputValue.value || inputValue.value === 0) |
||||
|
||||
isSuccess ? inputClassName.value.success = true : inputClassName.value.error = true |
||||
if (isSuccess) { |
||||
inputClassName.value.success = true |
||||
statusIcon.value = 'checkmark-circle-fill' |
||||
} else { |
||||
inputClassName.value.error = true |
||||
statusIcon.value = 'info-circle-fill' |
||||
} |
||||
} |
||||
|
||||
/** 输入框值变化时 */ |
||||
const handleChange = (newValue : string | number, oldValue : string | number) => { |
||||
emit('change', newValue, oldValue) |
||||
} |
||||
|
||||
/** 输入框失焦事件 */ |
||||
const handleBlur = (event) => { |
||||
emit('blur', event) |
||||
handleChangeInputStatus() |
||||
} |
||||
|
||||
/** 输入框事件 */ |
||||
const handleInput = (event) => { |
||||
emit('blur', event) |
||||
handleChangeInputStatus() |
||||
} |
||||
|
||||
const handleConfirm = (event) => { |
||||
emit('confirm', event) |
||||
} |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
@keyframes showIcon { |
||||
from { |
||||
transform: translate(-50%, -200%); |
||||
opacity: 0; |
||||
} |
||||
|
||||
to { |
||||
transform: translate(-50%, -50%); |
||||
opacity: 1; |
||||
} |
||||
} |
||||
|
||||
@keyframes romveIcon { |
||||
from { |
||||
transform: translate(-50%, -50%); |
||||
opacity: 1; |
||||
} |
||||
|
||||
to { |
||||
transform: translate(-50%, -200%); |
||||
opacity: 0; |
||||
} |
||||
} |
||||
|
||||
/** 动画时间 */ |
||||
$animationTime: 0.3s; |
||||
/** 验证成功颜色 */ |
||||
$successColor: #3AD8BC; |
||||
/** 验证失败颜色 */ |
||||
$errorColor: #F8544B; |
||||
|
||||
.input_container { |
||||
display: flex; |
||||
position: relative; |
||||
overflow: hidden; |
||||
// height: 80upx; |
||||
height: 100%; |
||||
transition: all $animationTime; |
||||
border: 4upx solid transparent; |
||||
// background: #fff; |
||||
border-radius: 10upx; |
||||
|
||||
&.success { |
||||
border: 4upx solid $successColor; |
||||
|
||||
.removeIconBox { |
||||
width: 60upx; |
||||
} |
||||
} |
||||
|
||||
&.error { |
||||
border: 4upx solid $errorColor; |
||||
|
||||
.removeIconBox { |
||||
width: 0upx; |
||||
} |
||||
} |
||||
|
||||
.removeIconBox { |
||||
position: relative; |
||||
height: 100%; |
||||
width: 0upx; |
||||
flex: none; |
||||
transition: all $animationTime; |
||||
overflow: hidden; |
||||
|
||||
.removeIcon { |
||||
position: absolute; |
||||
top: 50%; |
||||
left: 50%; |
||||
transform: translate(50%, -200%); |
||||
|
||||
&.showClearable { |
||||
animation: showIcon $animationTime forwards; |
||||
} |
||||
|
||||
&.removeClearable { |
||||
animation: romveIcon $animationTime forwards; |
||||
} |
||||
} |
||||
|
||||
} |
||||
|
||||
.statusIconBox { |
||||
position: relative; |
||||
height: 100%; |
||||
width: 60upx; |
||||
flex: none; |
||||
transition: all $animationTime; |
||||
overflow: hidden; |
||||
|
||||
.removeIcon { |
||||
position: absolute; |
||||
top: 50%; |
||||
left: 50%; |
||||
transform: translate(-50%, -50%); |
||||
|
||||
:deep(.u-icon__icon) { |
||||
color: $errorColor !important; |
||||
transition: all $animationTime; |
||||
} |
||||
|
||||
&.showClearable { |
||||
:deep(.u-icon__icon) { |
||||
color: $successColor !important; |
||||
} |
||||
|
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
.input { |
||||
height: 100%; |
||||
flex: 1; |
||||
padding: 0 20upx; |
||||
} |
||||
</style> |
@ -0,0 +1,422 @@
|
||||
<template> |
||||
<BasicContainer ref="basicContainer" :option="option"> |
||||
<template #head> |
||||
<view class="header_total_container"> |
||||
<PullDownBox ref="pullDownBox"> |
||||
<template #title> |
||||
<text class="fwb"> |
||||
预约号: |
||||
</text> |
||||
<text> |
||||
{{details.pageInfo.reservationCode || '暂无数据'}} |
||||
</text> |
||||
</template> |
||||
|
||||
<template #content> |
||||
<view class="header_total"> |
||||
<view class="header_total_item"> |
||||
<view class=""> |
||||
总件数 |
||||
</view> |
||||
|
||||
<view class="total"> |
||||
{{ details.info.sumNum || 0 }} |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="header_total_item"> |
||||
<view class=""> |
||||
已扫件数 |
||||
</view> |
||||
|
||||
<view class="scanNum"> |
||||
{{ details.info.inNum || 0 }} |
||||
</view> |
||||
</view> |
||||
|
||||
<view class="header_total_item"> |
||||
<view class=""> |
||||
未扫件数 |
||||
</view> |
||||
|
||||
<view class="notScanNum"> |
||||
{{ (details.info.sumNum || 0) - (details.info.inNum || 0) }} |
||||
</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
</PullDownBox> |
||||
</view> |
||||
<view class="tabBar_container fwb"> |
||||
<view :class="{'tabBar-item': true, active: details.tabBarActive === 0}" |
||||
@click="() => handleTabbarStatus(0)"> |
||||
未 入 库 |
||||
</view> |
||||
|
||||
<view :class="{'tabBar-item': true, active: details.tabBarActive === 1}" |
||||
@click="() => handleTabbarStatus(1)"> |
||||
已 入 库 |
||||
</view> |
||||
|
||||
<!-- 激活进度条 --> |
||||
<view class="activeView" :style="{left: ((details.tabBarActive) * (100 / 2)) + '%'}"> |
||||
<view class="item"> |
||||
|
||||
</view> |
||||
</view> |
||||
</view> |
||||
</template> |
||||
|
||||
<template #body> |
||||
<scroll-view :style="{height: details.scrollHeight}" @touchmove.stop class="scve" scroll-y="true" |
||||
@refresherpulling="()=>{}"> |
||||
|
||||
<block v-for="(item,index) in details.data" :key="item.id"> |
||||
<view class="orderPackage_container"> |
||||
<view class="orderPackage_container_item"> |
||||
<text class=""> |
||||
订单号: |
||||
</text> |
||||
|
||||
<text class="flex1"> |
||||
{{item.orderCode}} |
||||
</text> |
||||
</view> |
||||
|
||||
<view class="orderPackage_container_item"> |
||||
<text class=""> |
||||
包条码: |
||||
</text> |
||||
|
||||
<text class="flex1"> |
||||
{{item.orderPackageCode}} |
||||
</text> |
||||
</view> |
||||
|
||||
<view class="orderPackage_container_item"> |
||||
<text class=""> |
||||
一级品: |
||||
</text> |
||||
|
||||
<text class="flex1"> |
||||
{{item.firsts}} |
||||
</text> |
||||
</view> |
||||
|
||||
<view class="orderPackage_container_item"> |
||||
<text class=""> |
||||
二级品: |
||||
</text> |
||||
|
||||
<text class="flex1"> |
||||
{{item.second}} |
||||
</text> |
||||
</view> |
||||
|
||||
<view class="orderPackage_container_item"> |
||||
<text class=""> |
||||
三级品: |
||||
</text> |
||||
|
||||
<text class="flex1"> |
||||
{{item.thirdProduct}} |
||||
</text> |
||||
</view> |
||||
|
||||
<view class="orderPackage_container_item"> |
||||
<text class=""> |
||||
物料: |
||||
</text> |
||||
|
||||
<text class="flex1"> |
||||
{{item.materialName}} |
||||
</text> |
||||
</view> |
||||
|
||||
<view :class="details.tabBarActive === 0 ? 'tip red' : 'tip blue'"> |
||||
{{details.tabBarActive === 0 ?'未入库' : '已入库'}} |
||||
</view> |
||||
</view> |
||||
</block> |
||||
</scroll-view> |
||||
</template> |
||||
</BasicContainer> |
||||
|
||||
<tiplist ref="tiplists"></tiplist> |
||||
<!-- #ifdef APP --> |
||||
<saomiao2 :ishidestop="scanState !== 0"></saomiao2> |
||||
<!-- #endif --> |
||||
</template> |
||||
|
||||
<script lang="ts" setup> |
||||
import { ref, reactive, onMounted, nextTick, } from 'vue'; |
||||
import { |
||||
onShow, |
||||
onLoad, |
||||
} from '@dcloudio/uni-app' |
||||
import utils from '@/utils/utils.js'; |
||||
import { |
||||
postBusinessPreOrderList, |
||||
postBusinessPreOrderscanOrderPackageCode |
||||
} from '@/api/user.js' |
||||
import useSystemSettingsStore from '@/store/useSystemSettingsStore'; |
||||
import { storeToRefs } from 'pinia'; |
||||
const { scanState } = storeToRefs(useSystemSettingsStore()) |
||||
|
||||
const option = reactive({ |
||||
title: '预入库包件入库', |
||||
haveData: true, |
||||
async pullDownRefreshInitPage() { |
||||
|
||||
return await initpage() |
||||
} |
||||
}) |
||||
|
||||
const details = reactive({ |
||||
/** 扫码码值 */ |
||||
scancode: '', |
||||
/** 内容容器高度 */ |
||||
scrollHeight: '60vh', |
||||
/** tabBar激活值, 0 -- 有数据, 1 -- 无数据 */ |
||||
tabBarActive: 0 as 0 | 1, |
||||
pageInfo: { |
||||
/** 预约单号 */ |
||||
reservationCode: '' |
||||
}, |
||||
info: {}, |
||||
data: [] |
||||
}) |
||||
|
||||
|
||||
// 组件实例 |
||||
const tiplists = ref(null) |
||||
const pullDownBox = ref() |
||||
|
||||
onLoad(() => { |
||||
// #ifdef APP |
||||
utils.ttsspke('请扫描预约号') |
||||
// #endif |
||||
}) |
||||
|
||||
// 开启监听扫描 |
||||
onShow(async () => { |
||||
// #ifdef APP |
||||
uni.$off('scancodedate') |
||||
uni.$on('scancodedate', function (code) { |
||||
if (code) { |
||||
details.scancode = code |
||||
scandata() |
||||
} |
||||
}) |
||||
// #endif |
||||
|
||||
await nextTick() |
||||
pullDownBox.value.handleShowPullDown(true) |
||||
// orderRef.value.details.showPopUp = true |
||||
}) |
||||
|
||||
onMounted(async () => { |
||||
await nextTick() |
||||
details.scrollHeight = await utils.getViewDistanceFormTop('.scve') |
||||
}) |
||||
|
||||
/** 扫描预约单号 */ |
||||
const scanReservationCode = () => { |
||||
console.log('扫描预约单号') |
||||
const reg = new RegExp('^YY', 'i') |
||||
|
||||
if (!reg.test(details.scancode)) return utils.handleToast('请扫描预约单号') |
||||
|
||||
initpage() |
||||
} |
||||
|
||||
/** 扫描包件 */ |
||||
const scanOrderPackageCode = async () => { |
||||
console.log('扫描包件') |
||||
const { reservationCode } = details.pageInfo |
||||
|
||||
const submitData = { |
||||
reservationCode: reservationCode, |
||||
orderPackageCode: details.scancode |
||||
} |
||||
|
||||
if (!submitData.reservationCode) return |
||||
const res = await postBusinessPreOrderscanOrderPackageCode(submitData) |
||||
|
||||
const { code } = res |
||||
if (code !== 200) return |
||||
initpage() |
||||
} |
||||
|
||||
/** 扫描函数 */ |
||||
async function scandata() { |
||||
if (!details.pageInfo.reservationCode) scanReservationCode() |
||||
else scanOrderPackageCode() |
||||
} |
||||
|
||||
/** 设置tabBar激活状态 */ |
||||
const handleTabbarStatus = (code : 0 | 1) => { |
||||
if (code === details.tabBarActive) return |
||||
details.tabBarActive = code |
||||
|
||||
initpage() |
||||
} |
||||
|
||||
|
||||
const initpage = async () => { |
||||
const { reservationCode } = details.pageInfo |
||||
|
||||
details.data = [] |
||||
|
||||
const submitData = { |
||||
reservationCode: reservationCode ? reservationCode : details.scancode, |
||||
inWarehouse: details.tabBarActive |
||||
} |
||||
|
||||
console.log('submitData.reservationCode :>> ', submitData.reservationCode); |
||||
|
||||
if (!submitData.reservationCode) return utils.handleToast('请扫描预约单号') |
||||
|
||||
const response = await postBusinessPreOrderList(submitData, {}, true) |
||||
|
||||
const { code, data } = response |
||||
|
||||
if (code !== 200) return |
||||
details.pageInfo.reservationCode = submitData.reservationCode |
||||
details.data = data.list |
||||
details.info = data |
||||
} |
||||
</script> |
||||
|
||||
<style lang="scss" scoped> |
||||
@import url("@/utils/style/common.scss"); |
||||
|
||||
.tabBar_container { |
||||
display: flex; |
||||
position: relative; |
||||
// font-family: 黑体; |
||||
margin-bottom: 20upx; |
||||
background: #fff; |
||||
|
||||
.activeView { |
||||
display: block; |
||||
height: 2px; |
||||
position: absolute; |
||||
width: 50%; |
||||
top: 100%; |
||||
z-index: 1; |
||||
transition: all .3s; |
||||
|
||||
>.item { |
||||
background: var(--subjectColor); |
||||
height: 100%; |
||||
width: 40%; |
||||
margin: 0 auto; |
||||
} |
||||
} |
||||
|
||||
.tabBar-item { |
||||
flex: 1; |
||||
text-align: center; |
||||
padding: 20upx; |
||||
position: relative; |
||||
background-color: transparent; |
||||
z-index: 10; |
||||
transition: all 0.3s; |
||||
|
||||
&.active { |
||||
color: var(--subjectColor); |
||||
} |
||||
} |
||||
|
||||
} |
||||
|
||||
:deep(.u-divider__text) { |
||||
color: var(--subjectColor) !important; |
||||
font-size: 1rem !important; |
||||
} |
||||
|
||||
.header { |
||||
margin: 10upx; |
||||
} |
||||
|
||||
// 头部统计容器 |
||||
.header_total_container { |
||||
padding: 10upx; |
||||
} |
||||
|
||||
// 头部统计 |
||||
.header_total { |
||||
padding: 10upx; |
||||
border-radius: 10upx; |
||||
margin-top: 20upx; |
||||
display: flex; |
||||
align-items: center; |
||||
justify-content: space-around; |
||||
background: #f5f7fb; |
||||
font-size: 0.9rem; |
||||
} |
||||
|
||||
.header_total_item { |
||||
height: 100upx; |
||||
text-align: center; |
||||
display: flex; |
||||
flex-direction: column; |
||||
justify-content: space-between; |
||||
|
||||
>view { |
||||
&:nth-child(2) { |
||||
font-size: 1.2rem; |
||||
|
||||
&.total { |
||||
color: var(--subjectColor); |
||||
} |
||||
|
||||
&.scanNum { |
||||
color: #0f0; |
||||
} |
||||
|
||||
&.notScanNum { |
||||
color: #f00; |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
// 包件样式 |
||||
.orderPackage_container { |
||||
margin: 10upx; |
||||
padding: 10upx; |
||||
background: #fff; |
||||
border-radius: 5upx; |
||||
font-size: 0.9rem; |
||||
position: relative; |
||||
overflow: hidden; |
||||
|
||||
.tip { |
||||
position: absolute; |
||||
top: 0; |
||||
right: 0; |
||||
padding: 15upx 20upx; |
||||
|
||||
&.blue { |
||||
background-color: #0086F120; |
||||
color: #0086F1; |
||||
} |
||||
|
||||
&.red { |
||||
background-color: #F8544B20; |
||||
color: #F8544B; |
||||
} |
||||
|
||||
&.tp3 { |
||||
background-color: #FA8C1620; |
||||
color: #FA8C16; |
||||
} |
||||
} |
||||
|
||||
.orderPackage_container_item { |
||||
padding: 10upx; |
||||
} |
||||
} |
||||
</style> |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1 +1 @@
|
||||
<basic-container wx:if="{{z}}" class="r" u-s="{{['head','body']}}" u-r="basicContainer" u-i="45762c3a-0" bind:__l="__l" u-p="{{z}}"><view slot="head"><view class="headtop"><view><view>车牌号:{{a}}</view><view>司机:{{b}}</view></view></view><view class="tabmabx"><view><uni-table wx:if="{{j}}" u-s="{{['d']}}" u-i="45762c3a-1,45762c3a-0" bind:__l="__l" u-p="{{j}}"><uni-tr u-s="{{['d']}}" u-i="45762c3a-2,45762c3a-1" bind:__l="__l"><uni-th wx:if="{{c}}" u-i="45762c3a-3,45762c3a-2" bind:__l="__l" u-p="{{c}}"></uni-th><uni-th wx:if="{{d}}" u-s="{{['d']}}" u-i="45762c3a-4,45762c3a-2" bind:__l="__l" u-p="{{d}}">订单总数</uni-th><uni-th wx:if="{{e}}" u-s="{{['d']}}" u-i="45762c3a-5,45762c3a-2" bind:__l="__l" u-p="{{e}}">签收件数</uni-th></uni-tr><uni-tr wx:for="{{f}}" wx:for-item="item" u-s="{{['d']}}" u-i="{{item.g}}" bind:__l="__l"><uni-td wx:if="{{g}}" u-s="{{['d']}}" class="jhjs" u-i="{{item.b}}" bind:__l="__l" u-p="{{g}}">{{item.a}}</uni-td><uni-td wx:if="{{h}}" u-s="{{['d']}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{h}}">{{item.c}}</uni-td><uni-td wx:if="{{i}}" u-s="{{['d']}}" u-i="{{item.f}}" bind:__l="__l" u-p="{{i}}">{{item.e}}</uni-td></uni-tr></uni-table></view></view><view class="scinp"><view>齐套状态</view><view><cus-selects wx:if="{{l}}" bindchange="{{k}}" u-i="45762c3a-10,45762c3a-0" bind:__l="__l" u-p="{{l}}"></cus-selects></view><view class="inputs"><input placeholder="请输入查询的订单号"/></view><view class="btscan" bindtap="{{m}}">查询</view></view><view class="tabtip"><view bindtap="{{o}}"><view class="{{n}}">定制品</view></view><view bindtap="{{q}}"><view class="{{p}}">库存品</view></view><view bindtap="{{s}}"><view class="{{r}}">零担</view></view></view></view><scroll-view scroll-y="true" class="scrollv" slot="body"><view class="mabxs"><block wx:for="{{t}}" wx:for-item="item" wx:key="t"><block wx:if="{{v}}"><view class="ite" bindtap="{{item.f}}"><view><view catchtap="{{item.b}}">订单号:{{item.a}}</view><view>包条码:{{item.c}}</view></view><view><view>是否扫描:{{item.d}}</view><view>异常:{{item.e}}</view></view></view></block><block wx:if="{{w}}"><view class="ite" bindtap="{{item.m}}"><view><view>SKU:{{item.g}}</view><view>包件号:{{item.h}}</view></view><view><view>物品:{{item.i}}</view><view>规格:{{item.j}}</view></view><view><view>单位:{{item.k}}</view><view>扫描:{{item.l}}</view></view></view></block><block wx:if="{{x}}"><view class="ite" bindtap="{{item.s}}"><view><view>订单号:{{item.n}}</view></view><view><view>运单号:{{item.o}}</view></view><view><view>产品名称:{{item.p}}</view></view><view><view>预计签收件数:{{item.q}}</view><view>实际签收件数:{{item.r}}</view></view></view></block></block></view></scroll-view></basic-container><tiplist class="r" u-r="tiplists" u-i="45762c3a-11" bind:__l="__l"></tiplist> |
||||
<basic-container wx:if="{{A}}" class="r data-v-8cd5f8a8" u-s="{{['head','body']}}" u-r="basicContainer" u-i="8cd5f8a8-0" bind:__l="__l" u-p="{{A}}"><view slot="head"><view class="headtop data-v-8cd5f8a8"><view class="data-v-8cd5f8a8"><view class="data-v-8cd5f8a8">车牌号:{{a}}</view><view class="data-v-8cd5f8a8">司机:{{b}}</view></view></view><view class="tabmabx data-v-8cd5f8a8"><view class="data-v-8cd5f8a8"><uni-table wx:if="{{j}}" class="data-v-8cd5f8a8" u-s="{{['d']}}" u-i="8cd5f8a8-1,8cd5f8a8-0" bind:__l="__l" u-p="{{j}}"><uni-tr class="data-v-8cd5f8a8" u-s="{{['d']}}" u-i="8cd5f8a8-2,8cd5f8a8-1" bind:__l="__l"><uni-th wx:if="{{c}}" class="data-v-8cd5f8a8" u-i="8cd5f8a8-3,8cd5f8a8-2" bind:__l="__l" u-p="{{c}}"></uni-th><uni-th wx:if="{{d}}" class="data-v-8cd5f8a8" u-s="{{['d']}}" u-i="8cd5f8a8-4,8cd5f8a8-2" bind:__l="__l" u-p="{{d}}">订单总数</uni-th><uni-th wx:if="{{e}}" class="data-v-8cd5f8a8" u-s="{{['d']}}" u-i="8cd5f8a8-5,8cd5f8a8-2" bind:__l="__l" u-p="{{e}}">签收件数</uni-th></uni-tr><uni-tr wx:for="{{f}}" wx:for-item="item" class="data-v-8cd5f8a8" u-s="{{['d']}}" u-i="{{item.g}}" bind:__l="__l"><uni-td wx:if="{{g}}" u-s="{{['d']}}" class="jhjs data-v-8cd5f8a8" u-i="{{item.b}}" bind:__l="__l" u-p="{{g}}">{{item.a}}</uni-td><uni-td wx:if="{{h}}" class="data-v-8cd5f8a8" u-s="{{['d']}}" u-i="{{item.d}}" bind:__l="__l" u-p="{{h}}">{{item.c}}</uni-td><uni-td wx:if="{{i}}" class="data-v-8cd5f8a8" u-s="{{['d']}}" u-i="{{item.f}}" bind:__l="__l" u-p="{{i}}">{{item.e}}</uni-td></uni-tr></uni-table></view></view><view class="scinp data-v-8cd5f8a8"><view class="data-v-8cd5f8a8">齐套状态</view><view class="data-v-8cd5f8a8"><cus-selects wx:if="{{l}}" class="data-v-8cd5f8a8" bindchange="{{k}}" u-i="8cd5f8a8-10,8cd5f8a8-0" bind:__l="__l" u-p="{{l}}"></cus-selects></view><view class="inputs data-v-8cd5f8a8"><input class="data-v-8cd5f8a8" placeholder="请输入查询的订单号"/></view><view class="btscan data-v-8cd5f8a8" bindtap="{{m}}">查询</view></view><view class="tabtip data-v-8cd5f8a8"><view class="data-v-8cd5f8a8" bindtap="{{o}}"><view class="{{['data-v-8cd5f8a8', n]}}">定制品</view></view><view class="data-v-8cd5f8a8" bindtap="{{q}}"><view class="{{['data-v-8cd5f8a8', p]}}">库存品</view></view><view class="data-v-8cd5f8a8" bindtap="{{s}}"><view class="{{['data-v-8cd5f8a8', r]}}">零担</view></view></view></view><scroll-view scroll-y="true" style="{{'height:' + y}}" class="scrollv data-v-8cd5f8a8" slot="body"><view class="mabxs data-v-8cd5f8a8"><block wx:for="{{t}}" wx:for-item="item" wx:key="t"><block wx:if="{{v}}"><view class="ite data-v-8cd5f8a8" bindtap="{{item.f}}"><view class=" data-v-8cd5f8a8"><view class="data-v-8cd5f8a8"><view class="data-v-8cd5f8a8" catchtap="{{item.b}}">订单号:{{item.a}}</view><view class="mt10 data-v-8cd5f8a8">包条码:{{item.c}}</view></view></view><view class="{{['data-v-8cd5f8a8', 'scanTip', item.e && 'isScan']}}">{{item.d}}</view></view></block><block wx:if="{{w}}"><view class="ite data-v-8cd5f8a8" bindtap="{{item.m}}"><view class="data-v-8cd5f8a8"><view class="data-v-8cd5f8a8">SKU:{{item.g}}</view><view class="data-v-8cd5f8a8">包件号:{{item.h}}</view></view><view class="data-v-8cd5f8a8"><view class="data-v-8cd5f8a8">物品:{{item.i}}</view><view class="data-v-8cd5f8a8">规格:{{item.j}}</view></view><view class="data-v-8cd5f8a8"><view class="data-v-8cd5f8a8">单位:{{item.k}}</view><view class="data-v-8cd5f8a8">扫描:{{item.l}}</view></view></view></block><block wx:if="{{x}}"><view class="ite data-v-8cd5f8a8" bindtap="{{item.s}}"><view class="data-v-8cd5f8a8"><view class="data-v-8cd5f8a8">订单号:{{item.n}}</view></view><view class="data-v-8cd5f8a8"><view class="data-v-8cd5f8a8">运单号:{{item.o}}</view></view><view class="data-v-8cd5f8a8"><view class="data-v-8cd5f8a8">产品名称:{{item.p}}</view></view><view class="data-v-8cd5f8a8"><view class="data-v-8cd5f8a8">预计签收件数:{{item.q}}</view><view class="data-v-8cd5f8a8">实际签收件数:{{item.r}}</view></view></view></block></block></view></scroll-view></basic-container><tiplist class="r data-v-8cd5f8a8" u-r="tiplists" u-i="8cd5f8a8-11" bind:__l="__l"></tiplist> |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue