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.
35 lines
540 B
35 lines
540 B
12 months ago
|
<template>
|
||
|
<request-com-main-card :dataContent="dataContent">
|
||
|
<view class="task_item">
|
||
|
从仓库代码 : {{dataContent.fromWarehouseCode}}
|
||
|
</view>
|
||
|
</request-com-main-card>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import requestComMainCard from '@/mycomponents/request/requestComMainCard.vue'
|
||
|
export default {
|
||
|
components: {
|
||
|
requestComMainCard,
|
||
|
},
|
||
|
data() {
|
||
|
return {};
|
||
|
},
|
||
|
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
},
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss">
|
||
|
|
||
|
</style>
|