emis-app/pages/tms/allCartScanning.vue

53 lines
814 B
Vue
Raw Permalink Normal View History

2024-02-01 15:35:47 +00:00
<template>
2024-06-12 15:41:48 +00:00
<tpx-page>
<bo-page-cart-scan-tmp :queryOption="queryOption" :config="config"></bo-page-cart-scan-tmp>
</tpx-page>
2024-02-01 15:35:47 +00:00
</template>
<script>
2024-06-12 15:41:48 +00:00
import BoPageCartScanTmp from "@/components/buns-order-templates/bo-page-cart-scan-tmp"
2024-05-30 10:19:13 +00:00
2024-02-01 15:35:47 +00:00
export default {
2024-06-12 15:41:48 +00:00
components:{ BoPageCartScanTmp },
2024-02-01 15:35:47 +00:00
props: {
},
computed: {
},
data() {
return {
2024-06-12 15:41:48 +00:00
queryOption: {
billCode: '', // 运单id
2024-02-01 15:35:47 +00:00
},
2024-06-12 15:41:48 +00:00
config: {
title: '整车'
}
2024-02-01 15:35:47 +00:00
}
},
onShareAppMessage() {
},
2024-06-12 15:41:48 +00:00
onLoad(option) {
this.queryOption = option
2024-02-01 15:35:47 +00:00
this.initData();
},
onUnload() {
},
methods: {
initData() {
2024-06-12 15:41:48 +00:00
2024-02-01 15:35:47 +00:00
}
}
}
</script>
<style lang="scss">
@import '@/common/uni-nvue.scss';
page {
background-color: #F6F6F6;
height: 100% !important;
}
</style>
<style scoped lang="scss">
</style>