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

2 years ago
<template>
2 years ago
<view class="card_view ">
<text class="card_location" :class="activeCardLocation?activeCardLocation:''">{{title}}</text>
<text class="card_big_content" style="font-size: 40rpx;">{{locationCode}}</text>
2 years ago
</view>
</template>
<script>
export default {
components: {
},
data() {
return {}
},
props: {
locationCode: {
type: String,
default: ''
},
title: {
type: String,
default: '库位'
},
activeCardLocation: {
type: String,
default: ''
},
2 years ago
},
}
</script>
<style>
.active_card_location{
color: #0A84FF;
}
2 years ago
</style>