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
436 B

10 months ago
<template>
10 months ago
<view class="card_view uni-inline-item">
<text class="card_location card_content ">{{title}}</text>
<text class="card_content ">{{locationCode}}</text>
10 months ago
</view>
</template>
<script>
export default {
components: {
},
data() {
return {}
},
props: {
locationCode: {
type: String,
default: ''
},
10 months ago
title: {
type: String,
default: '库位'
},
10 months ago
},
}
</script>
<style>
</style>