|
|
@@ -91,7 +91,7 @@ const MAX_PHOTO_SIZE = 15 * 1024 * 1024
|
|
|
const DEFAULT_NAME_BY_TYPE = Object.freeze({
|
|
|
person: 'Person',
|
|
|
pet: 'Pet',
|
|
|
- goods: 'Goods'
|
|
|
+ goods: 'Item'
|
|
|
})
|
|
|
|
|
|
const qrType = computed(() => qrDetail.value?.qrType || 'person')
|
|
|
@@ -104,7 +104,7 @@ const heroTitle = computed(() => {
|
|
|
if (!qrDetail.value) return 'Contact Card'
|
|
|
if (isPerson.value) return 'Person Card'
|
|
|
if (isPet.value) return 'Pet Card'
|
|
|
- if (isGoods.value) return 'Goods Card'
|
|
|
+ if (isGoods.value) return 'Item Card'
|
|
|
return 'Contact Card'
|
|
|
})
|
|
|
|