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.
38 lines
643 B
38 lines
643 B
12 months ago
|
<template>
|
||
|
<view class="pack_view uni-inline-item">
|
||
|
<text style="color: #606266;font-size: 13px;">供应商</text>
|
||
|
<text style="color: #606266;font-size: 13px;">{{dataContent.SupplierName}}</text>
|
||
|
</view>
|
||
|
<view class="pack_view uni-inline-item">
|
||
|
<text style="color: #606266;font-size: 13px;">采购订单</text>
|
||
|
<text style="color: #606266;font-size: 13px;">{{dataContent.PoNumber}}</text>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
components: {},
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
|
||
|
}
|
||
|
},
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: ''
|
||
|
},
|
||
|
},
|
||
|
watch: {
|
||
|
|
||
|
},
|
||
|
methods: {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|