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.

22 lines
379 B

2 years ago
<template>
1 year ago
<view class="card_view">
<text class="card_packing_code card_content">{{ title }}</text>
<text class="card_content">{{ packingCode }}</text>
</view>
2 years ago
</template>
1 year ago
<script setup lang="ts">
const props = defineProps({
packingCode: {
type: String,
default: ''
},
title: {
type: String,
default: '包装'
}
})
2 years ago
</script>
1 year ago
<style></style>