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.
21 lines
393 B
21 lines
393 B
<template>
|
|
<view class="card_view">
|
|
<text class="card_location">{{ title }}</text>
|
|
<text class="card_big_content" style="font-size: 40rpx">{{ locationCode }}</text>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const props = defineProps({
|
|
locationCode: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
title: {
|
|
type: String,
|
|
default: '库位'
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style></style>
|
|
|