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.
32 lines
421 B
32 lines
421 B
1 year ago
|
<template>
|
||
1 year ago
|
<view class="card_view ">
|
||
1 year ago
|
<text class="card_location card_content ">{{title}}</text>
|
||
|
<text class="card_content ">{{locationCode}}</text>
|
||
1 year ago
|
</view>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
components: {
|
||
|
},
|
||
|
data() {
|
||
|
return {}
|
||
|
},
|
||
|
props: {
|
||
|
locationCode: {
|
||
|
type: String,
|
||
|
default: ''
|
||
|
},
|
||
1 year ago
|
title: {
|
||
|
type: String,
|
||
|
default: '库位'
|
||
|
},
|
||
|
|
||
1 year ago
|
},
|
||
|
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style>
|
||
|
</style>
|