53 lines
814 B
Vue
53 lines
814 B
Vue
<template>
|
|
<tpx-page>
|
|
<bo-page-cart-scan-tmp :queryOption="queryOption" :config="config"></bo-page-cart-scan-tmp>
|
|
</tpx-page>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import BoPageCartScanTmp from "@/components/buns-order-templates/bo-page-cart-scan-tmp"
|
|
|
|
export default {
|
|
components:{ BoPageCartScanTmp },
|
|
props: {
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
data() {
|
|
return {
|
|
queryOption: {
|
|
billCode: '', // 运单id
|
|
},
|
|
config: {
|
|
title: '整车'
|
|
}
|
|
}
|
|
},
|
|
onShareAppMessage() {
|
|
},
|
|
onLoad(option) {
|
|
this.queryOption = option
|
|
this.initData();
|
|
},
|
|
onUnload() {
|
|
|
|
},
|
|
methods: {
|
|
initData() {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '@/common/uni-nvue.scss';
|
|
page {
|
|
background-color: #F6F6F6;
|
|
height: 100% !important;
|
|
}
|
|
</style>
|
|
<style scoped lang="scss">
|
|
</style> |