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.
42 lines
745 B
42 lines
745 B
1 year ago
|
<!-- 收货任务详情 -->
|
||
|
<template>
|
||
|
<view class="device-detail" style="padding-bottom: 0 !important;">
|
||
|
<comRequestTopInfo :requestContent="dataContent"></comRequestTopInfo>
|
||
|
<view class="" style="font-size: 32rpx;">
|
||
|
订单号 : {{dataContent.asnNumber}}
|
||
|
</view>
|
||
|
<view class="" style="font-size: 32rpx;">
|
||
|
供应商代码 : {{dataContent.supplierCode}}
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import comRequestTopInfo from '@/mycomponents/comRequest/comRequestTopInfo.vue'
|
||
|
|
||
|
export default {
|
||
|
components: {
|
||
|
comRequestTopInfo
|
||
|
},
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
}
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
};
|
||
|
},
|
||
|
|
||
|
mounted() {
|
||
|
|
||
|
},
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
</style>
|