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.
30 lines
424 B
30 lines
424 B
2 years ago
|
<template>
|
||
|
<view class="uni-flex uni-column">
|
||
|
<text>{{dataContent.locationCode}}</text>
|
||
|
<text>{{dataContent.group}}</text>
|
||
|
<text>{{dataContent.area}}</text>
|
||
|
<text>{{dataContent.erpCode}}</text>
|
||
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
expand: false
|
||
|
}
|
||
|
},
|
||
|
props: {
|
||
|
dataContent: {
|
||
|
type: Object,
|
||
|
default: {}
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|