emis-app/components/buns-order-templates/bo-scanlist-tmp.vue
2024-06-01 12:25:22 +08:00

71 lines
1.1 KiB
Vue

<template>
<tpx-scroll-view v-model:resObject="modelRes"
>
<view class="">
<view class="pb-20">
<u-row>
<u-col span="8">
<text class="font-weight">运单号</text>
</u-col>
<u-col span="4">
<text class="font-weight">扫描时间</text>
</u-col>
</u-row>
</view>
<view v-for="(item, index) in modelRes.list" class="yditem">
<u-row>
<u-col span="8">
<text class="">{{item.billCode}}</text>
</u-col>
<u-col span="4">
<text class="clr-sub">{{item.scanDate}}</text>
</u-col>
</u-row>
</view>
</view>
</tpx-scroll-view>
</template>
<script>
export default {
components: { },
computed: {
modelRes: {
get(){
return this.resData
}
},
},
props: {
resData: {
default () {
return { list: [] }
}
}
},
data() {
return {
}
},
created() {
},
onHide() {
},
unmounted() {
},
methods: {
}
}
</script>
<style lang="scss">
@import '@/common/uni-nvue.scss';
</style>
<style scoped lang="scss">
</style>