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.
54 lines
1.1 KiB
54 lines
1.1 KiB
12 months ago
|
<template>
|
||
|
<view class="">
|
||
|
<view class="uni-flex uni-column">
|
||
|
<view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">申请单号 : </text>
|
||
|
<text class="text_wrap">{{dataContent.requestNumber}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">申请时间 : </text>
|
||
|
<text class="text_wrap">{{dataContent.requestTime}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">要求截至时间 : </text>
|
||
|
<text class="text_wrap">{{dataContent.requestDueTime}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">从仓库代码 : </text>
|
||
|
<text class="text_wrap">{{dataContent.fromWarehouseCode}} </text>
|
||
|
</view>
|
||
|
<view class="item">
|
||
|
<text class="item_title">到仓库代码 : </text>
|
||
|
<text class="text_wrap">{{dataContent.toWarehouseCode}} </text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
components: {},
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
|
||
|
mounted() {},
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
methods: {}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|